function ShowBigImg(ImgName,ImgWidth,ImgHeight,Title){

var Ver4 = parseInt(navigator.appVersion) >= 4
var Nav4 = ((navigator.appName == "Netscape") && Ver4)
var IE4 = ((navigator.userAgent.indexOf("MSIE") != -1) && Ver4)

var widthdop = 0; 
var heightdop = 0;

if (IE4) { widthdop = 12; heightdop = 27;};

	myWin= open("", "ImgWindow", 
    			"width="+ImgWidth+",height="+ImgHeight+",status=no,toolbar=no,menubar=no,scrollbars=auto,resizable=yes");
	
	myWin.document.write("<html><head><title>"+Title);
	myWin.document.write("</title></head><body  topmargin=0 marginheight=2 leftmargin=0 marginwidth=0 "+
		'onload="javacsript:self.resizeTo('+eval(ImgWidth+widthdop)+','+eval(ImgHeight+heightdop)+')">');
	myWin.document.write("<center><a href='javascript:window.close()'>");
	myWin.document.write("<img src='"+ImgName+"' width="+ImgWidth+" height="+ImgHeight+" border=0 alt='Click to close the window'>");
	myWin.document.write("</a>");
	myWin.document.write("</body></html>");

	myWin.document.close();  
	myWin.window.focus();

}
function showWindow( source )
{
	myWin= open( source, "GoogMore", 'width=562,height=300,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no' );
	myWin.window.focus();
}
function showWalk()
{
 showWindow('./walk1.phtml', 'width=562,height=257,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no', 'walkWindow' );
}