function goToQuickLink()
{
	var quickLink = document.getElementById( 'quickLinks' );
	
	if( quickLink != null )
	{
		document.location.href = quickLink.options[ quickLink.selectedIndex ].value;
	}
}
