
<!--

	function pop360(imagename) // PDL // takes imagename and launches popup
	{  
	window.open(setPath() + "images/panoramic/display.asp?imagename=" + imagename ,"360popup","width=404,height=362,resizable=no");
	}



	function popImage(imagename) // PDL // takes imagename and launches popup
	{  
   		//window.open(setPath() + "viewimage.aspx?image=" + imagename ,"CI Ceramics Gallery","width=404,height=362,resizable");
			window.open(setPath() + "viewimage.aspx?image=" + imagename ,"Gallery","width=480,height=480,resizable=yes");
	}




	function setPath() // PDL // cust func to detect and set relative path to use
	{
		var path = ""
		var p = location.pathname.toString();
		//check if local path and adjust 
			var i = p.indexOf("www")
			var p = p.substr(i+4)
		count = p.split('/');	
		for (n in --count) 
		{
			path = path + "../";					
		}
		return path;
	}



	function setStatus() // PDL // custom statusline msg for the 360 pics
	{
		window.status = "360 panorama image (opens in new window)";
		return true;
	}



	function clearStatus()
	{
	window.status = " ";
	}
	
	
	
//-->
