<!-- 
window.onerror = "return true";
function goToURL(frmquick)
  {
    var myindex=document.frmquick.dropdownmenu.selectedIndex
	if(document.frmquick.dropdownmenu.options[myindex].value=="") {
		alert('Please Select Option');
		return false;
	}
	else {
        window.location.href=document.frmquick.dropdownmenu.options[myindex].value;
      }
}
-->