var xx = null;

function OpenWindowImageHTML(myImage){
	
	//Width
	//if(mywidth < 400){
		mywidth = 420;
	//}
	
	//Height
	//if(myheight < 275){
		myheight = 293;
	//}
	
	try{
	    xx.close();
	}
	catch(e){
	}
	xx = window.open("","Image","width=" + mywidth + ", height=" + myheight + ", scrollbars=0, resizable=0,location=no");
	xx.document.write("<html><head><title>Image</title></head><body bgcolor=#FFFFFF  topmargin='10' leftmargin='10' marginwidth='10' marginheight='10'><IMG onclick='window.close();' src='" + myImage + "' vspace=0 hspace=0 border='0' ></body></html>");
	xx.moveTo(100,100);
	xx.focus();
}
function OpenWindow( srcimage, srcwidth, srcheight){
	try{
	    xx.close();
	}
	catch(e){
	}
	xx = window.open(srcimage,"Image","width=" + srcwidth + ",height=" + srcheight + ",left=0,top=0");
	xx.moveTo(100,100);
	xx.focus();
}
