// JavaScript Document
	function pop_window(url,high,wid,tit) {
    var scr = 0; if(high>600){ high=550; scr=1; } wid = wid+17;
    var popit = window.open("","","menubar=no, toolbar=no, addressbar=no, top=100,left=100, scrollbars="+scr+", width="+wid+", height="+high); 
    writ = "<html><title>"+tit+"</title><body leftmargin=0, topmargin=0><img src="+url+"></body></html>"; popit.document.write(writ); 
    }

