/**
 * 
 *
 * @version $Id$
 * @copyright 2006 
 **/

//alert('com.govo.utils Loaded!');

if(typeof com == "undefined") {
	var com = new Object();
}

if(typeof com.govo == "undefined") {
	com.govo = new Object();
}

//////////////////////////////////////////////////////////////
// com.govo.utils
//////////////////////////////////////////////////////////////

com.govo.utils = function() { //Constructor

	if (!document.createElement || !document.getElementById) {
		return;
	}
	
	this.image_window = null;
}

com.govo.utils.prototype =  // Class decloration
{
	PopupImageWindowDef: function(imageURL, imageTitle, Width, Height) {
		this.image_window = window.open("","displayWindow","scrollbars=no,width="+Width+",height="+Height+"");//menubar=yes,
		var msgWindow = this.image_window;
		msgWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
		msgWindow.document.write('<html><head><title>Loading...</title><style type="text/css">body{margin:0px;}</style>');
		msgWindow.document.write('<script language="javascript" type="text/javascript">');
		msgWindow.document.write('function doTitle() { document.title="'+imageTitle+'"; }');
		msgWindow.document.write('</script>');
		msgWindow.document.write('</head><body style="background-color:#000000;" onload="doTitle();self.focus()">'); //scroll=no
		msgWindow.document.write('<img name="OBJ" src="'+imageURL+'" alt="'+imageTitle+' - Click to close the window..." style="display:block" onClick="self.close();"></body></html>');
		msgWindow.document.close();
	},
	
	PopupImageWindow: function(imageURL, imageTitle) {
		this.image_window = window.open("","displayWindow","scrollbars=no,width=640,height=480");//menubar=yes,
		var msgWindow = this.image_window;
		msgWindow.document.write("<html><head><title>Loading...</title><style>body{margin:0px;}</style>");
		msgWindow.document.write("<script>");
		msgWindow.document.write("function reSizeToImage(){");
		msgWindow.document.write("window.resizeTo(640,480);");
		msgWindow.document.write("width=640-(document.body.clientWidth-document.images[0].width);");
		msgWindow.document.write("height=480-(document.body.clientHeight-document.images[0].height);");
		msgWindow.document.write("window.resizeTo(width,height);}");
		msgWindow.document.write("function doTitle() { document.title=\""+imageTitle+"\"; }");
		msgWindow.document.write("</script>");
		msgWindow.document.write("</head><body bgcolor=000000 scroll=\"no\" onload=\"reSizeToImage();doTitle();self.focus()\">");
		msgWindow.document.write("<img name=\"OBJ\" src=\""+imageURL+"\" alt=\""+imageTitle+" - Click to close the window...\" style=\"display:block\" onClick=\"self.close();\"></body></html>");
		msgWindow.document.close();
	}
	
} //end class

