function OpenWindow(url,width,height)
{
	var scrWidth,scrHeight,top,left
	scrWidth=screen.width
	scrHeight=screen.height
	top=(scrHeight-height)/2-10
	left=(scrWidth-width)/2-6
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+(width+12)+',height='+(height+20)+',left='+left+',top='+top+',screenX='+left+',screenY='+top
	var MyWindow=window.open("","msgWindow", styleStr)
	MyWindow.document.write("<html>");
	MyWindow.document.write("<head><title>CI</title></head>")
	MyWindow.document.write("<body leftmargin=\"6\" topmargin=\"10\">")
	MyWindow.document.write("<img src=\""+url+"\" width=\""+width+"\" height=\""+height+"\" border=\"0\">")
	MyWindow.document.write("</body>")
	MyWindow.document.write("</html>")
}