function goQuickLink(clientID)
{
	var selectObject = document.getElementById(clientID) 
	
	if (selectObject!=null)
	{
		var option = selectObject[selectObject.selectedIndex]
		
		if(option.value != "-1")
		{
			if (option.title == 'true')
			{
				window.open(option.value, "quickLink")
			}
			else
			{
				document.location = option.value
			}
		}
	}
	
}
