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+15)+',left='+left+',top='+top+',screenX='+left+',screenY='+top
	var MyWindow=window.open("","msgWindow", styleStr)
	MyWindow.document.write("<html>");
	MyWindow.document.write("<head><title>Axport Movies: www.axport.com/movies/</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("<br>")
	MyWindow.document.write("<script type=text/javascript src=http://s19.sitemeter.com/js/counter.js?site=s19wowojoe>")
	MyWindow.document.write("</script>")
	MyWindow.document.write("<noscript>")
	MyWindow.document.write("<img src=http://s19.sitemeter.com/meter.asp?site=s19wowojoe alt=YoyaCool SiteMeter border=0>")
	MyWindow.document.write("</noscript>")
	MyWindow.document.write("</body>")
	MyWindow.document.write("</html>")
}