        <!--
		function GotoURL() { 
			var list;
			
			if (document.getElementById){
				list = document.getElementById("quicknavdd");
			}else{
				if (document.all){
					list = document.all[quicknavdd];
				}else{
					alert("Browser not supported please inform development team");
				}
			}
			if (list.options[list.selectedIndex].value != "spacer1"){		
				if (list.options[list.selectedIndex].value == "../pdf/Checklist.pdf" ){
					openWindow(list.options[list.selectedIndex].value);
				}else if(list.options[list.selectedIndex].value == "../html/iip.html" ){
					openWindow(list.options[list.selectedIndex].value);
				}else if(list.options[list.selectedIndex].value == "../html/directors.html" ){
					openWindow(list.options[list.selectedIndex].value);
				}else if(list.options[list.selectedIndex].value=="../html/qmp.html" ){
					openWindow(list.options[list.selectedIndex].value);
				}else if(list.options[list.selectedIndex].value=="../html/contprint.html" ){
					openWindow(list.options[list.selectedIndex].value);
				}else {
					window.top.location.href = list.options[list.selectedIndex].value;
				}
			}
		}  
		//-- This function opens the new, empty window named floater.
		function openWindow(srcUrl) {
		   var floater;
		   winStats='toolbar=no,location=no,directories=no,menubar=no,';
		   winStats+='scrollbars=no,width=550,height=550';
		   if (navigator.appName.indexOf("Microsoft")>=0) {
		      winStats+=',left=10,top=25';
		    }else{
		      winStats+=',screenX=10,screenY=25';
		    }
		   floater=window.open(srcUrl,"",winStats);    
		}
		-->
