	function OpenBrowserWindow(theURL, winName, features, myWidth, myHeight, isCenter) 
	{ //v3.0
	  if(window.screen)if(isCenter)if(isCenter=="true"){
		var myLeft = (screen.width-myWidth)/2;
		var myTop = (screen.height-myHeight)/2;
		features+=(features!='')?',':'';
		features+=',left='+myLeft+',top='+myTop;
	  }
	  var d=window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',resizable=yes,height='+myHeight);
	}
	function showLocationMap()
	{
		//alert("1");
		OpenBrowserWindow("images/locationmap.jpg", 'location_map', 'scrollbars=no,resizeable=yes', 295, 450, "true"); 
		return false;
	}
	function showPrintPage()
	{
		//alert("1");
		OpenBrowserWindow("printpage.htm", 'printpage', 'scrollbars=no,resizeable=yes', 600, 700, "true"); 
		return false;
	}
	
	function showPopUp(ImgName)
	{
		
		OpenBrowserWindow("images/big_" + ImgName, 'popup', 'scrollbars=no,resizeable=yes', 520, 354, "true"); 
		return false;
	}
	
	
	
	
	function addToFavo()
	{
	
	if (navigator.appName=="Netscape")
	 {
		 alert('To bookmark this site, click Bookmarks | Add bookmark or press Ctrl+D.' );
	}
	
	else if 
	(
		parseInt(navigator.appVersion)>3)
		 {
			 window.external.AddFavorite('http://www.Jetcruiser.com.au','JetCruiser');
		 }
	}
	

	
