var ns = /MSIE (5\.0|[1234])/.test(navigator.userAgent)

function zoom_img(n,txt, w, h) {
 W = window.open("", "", "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,left=50,top=20,height="+h+",width="+w);
 W.document.write("<html><head><title>"+txt+"</title></head>");
 W.document.write("<body leftmargin=0 topmargin=0><a href=# onClick=\"window.close()\"><img src='" + n + "' border=0></a></body></html>");
 W.focus();  
}

function new_win(url, w, h) {
 W = window.open(url, "", "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,left=50,top=20,height="+h+",width="+w);
 W.focus();  
}

function print_png(objid){
 	 if (ns){ document.write('<img src="/img/'+objid+'all.gif" id="'+objid+'"');}
	else{ document.write('<img src="/img/'+objid+'.png" id="'+objid+'" class="png"');}
}

function print_pngbg(objid){
 	 if (ns){ document.write('<img src="/img/'+objid+'all.gif" id="'+objid+'"');}
	else{ var str1 ='<img src="/img/'+objid+'.gif" id="'+objid+'" class="pngbg" style="background-image:url(/img/'+objid+'bord.png)"'
	document.write(str1);}
}

