// JavaScript Document
function show(image)
{
    mywindow=window.open('','','width=1,height=1,scrollbars=0');
	mywindow.document.write("<html><head><style type='text/css'><!--body {	margin-left: 0px;	margin-top: 0px;	margin-right: 0px;	margin-bottom: 0px;}--></style>");
	mywindow.document.write("<title>picture</title>");
	mywindow.document.write("<script language=javascript>function  BodyOnLoad(){");
	mywindow.document.write("var  top=((window.screen.availHeight-document.body.clientHeight)/2);");
	mywindow.document.write("var  left=((window.screen.availWidth-document.body.clientWidth)/2);");
    mywindow.document.write("window.moveTo(left,  top);}</script>");
	mywindow.document.write("</head><body>");
	mywindow.document.write("<img src='" + image + "'  onload=javascript:resizeTo(this.offsetWidth,this.offsetHeight);BodyOnLoad();>");
}