// Contains misc. javascript functions used throughout web site

	function ShowPDFPopup(URL) 
	{
		var popupWindow;
		popupWindow = window.open(URL,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=750,height=800');
		popupWindow.focus();
	}
	
	function ShowLinkPopup(URL) 
	{
		var popupWindow;
		popupWindow = window.open(URL,'popupWindow','toolbar=yes,location=yes,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=750,height=650');
		popupWindow.focus();
	}
	
	function LoadTop()
    {
		if (parent.frames[1])
			parent.location = self.location.href;
    }
    
	function openNewWindow(URL, name) 
    {
		var popupWindow;
        window.open(URL,name,'toolbar=yes,location=yes,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=800,height=1000');
		popupWindow.focus();
    }   
    
			
   function LoadImage(fullFile) 
	{
		var imgWindow;
		imgWindow = window.open('imgDetail.asp?imgFile=' + fullFile,'imgWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width=1027,height=781');
		imgWindow.focus();
	} 
    
    
      
    			function LoadInfoWindow(target) 
			{
				var infoWindow;
				infoWindow = window.open(target,'infoWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width=644,height=700');
				infoWindow.focus();
			} 


