
        	function winopen(name,resX,resY,title)
        {

		   	
		   msg=window.open("","_blank","width="+resX+",height="+resY+",toolbar=no,directories=no,menubar=no,resizeble=no,scrollbars=no");
		   msg.moveTo(0,0);
		   msg.document.write("<head><title>" + title + "</title></head>");
		   msg.document.write("<body marginheight=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0><a href='javascript:window.close();'><img src="+name+" border=\"0px\"></a></body>");
		   msg.document.close();
		}


