<!--
function new_win(url,width,height){
 window.open(url,"url","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,width="+width+",height="+height+"");
}

function getrandom() { 

  var min_random = 0; 
  var max_random = 999; 

  max_random++; 

  var range = max_random - min_random; 
  var n=Math.floor(Math.random()*range) + min_random; 

  return n; 
} 


function show_img(url, wdth, hght, wttl) {
 var wcfg="width="+wdth+",height="+hght+",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no"
 var wname=getrandom();
 var nw=window.open("",wname,config=wcfg)
 nw.document.writeln("<HTML><HEAD>")
 nw.document.writeln("<TITLE>"+wttl+"</TITLE>")
 nw.document.writeln("</HEAD>")
 nw.document.writeln("<BODY bgcolor='#FFFFFF' topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0' onLoad='self.focus();'>")
 nw.document.writeln("<SCRIPT language='JavaScript'><!--")
 nw.document.writeln("var ox=document.body.clientWidth;")
 nw.document.writeln("var oy=document.body.clientHeight;")
 nw.document.writeln("var nx=0;")
 nw.document.writeln("var ny=0;")
 nw.document.writeln("var x=screen.availWidth;")
 nw.document.writeln("var y=screen.availHeight;")
 nw.document.writeln("if (x > ox) nx=((x/2)-(ox/2));")
 nw.document.writeln("if (y > oy) ny=((y/2)-(oy/2))-24;")
 nw.document.writeln("self.moveTo(nx,ny);")
 nw.document.writeln("//-->")
 nw.document.writeln("</SCRIPT>")
 nw.document.writeln("<CENTER>")
 nw.document.writeln("<IMG src='"+url+"' alt='"+wttl+"' title='' border='0'>")
 nw.document.writeln("</CENTER>")
 nw.document.writeln("</BODY>")
 nw.document.writeln("</HTML>")
}
//-->
