
	function ShowImage(ImageName)
	{
		var strImageName  // Stores the relative image path
		var strPageName
		strPageName="showlogo.php?ImageName="+escape(ImageName)+"&preview=1";
		window.open(strPageName,"ImageWindow","width=296,height=162,scrollbars=no,resizable=yes, menubar=no,toolbars=no");
	}

	function popup(url,width,height)
	{
		window.open(url,"","width=" + width + ",height=" + height);
	}
