function $( id )
{
	return document.getElementById( id );
}

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