function openwin(x,y,z,txt) {
var text1="";
var sWidth,sHeight,NS4;
NS4 = (document.layers) ? 1 : 0;
if (!NS4) {
	y+=20;
	z+=40;
}
if (txt)
text1+='<br>'+txt;
	var clientimg=window.open("","newWindow","width=" + y + ",height=" + z + ",resizable=1");
	clientimg.window.resizeTo(y,z);
//	clientimg.window.moveTo(sWidth,sHeight);
	clientimg.document.open("text/html");
	clientimg.document.write('<body bgcolor="e1e1e1" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><table width="100%" height="100%"><tr><td align="center"><IMG SRC="' + x + '">'+text1+'</td></tr></table></body>');
	clientimg.document.close();
	clientimg.window.focus();
}


function openwin1(x,y,z) {
	var clientimg1=window.open(x,"","width=" + y + ",height=" + z + ",resizable=1");
	clientimg1.window.focus();
}



function openwin2(x,y,z) {
	var clientimg1=window.open(x,"","width=" + y + ",height=" + z + ",resizable=1,scrollbars=yes");
	clientimg1.window.focus();
}