<!--
var MyWin;
function showLarge(url)
{
  window.open(url, null,'status=yes,toolbar=no,menubar=no,location=no,resizable=yes');
}
function openWin(f,xx,yy,title)
{  
  imgX = xx;
  imgY = yy; 	       
  xx+=20;
  yy+=10;  
  var bottom_height = 30;
  var border_top='2px solid #BA8C75';
  var border_bottom = '2px solid #251208';
  var backgroundColor = '#A25E3C';
  var button_css = 'color:#000000;background-color:#FECB80;width:90px;font-family:arial;font-size:8pt;font-weight:bold;cursor:pointer;cursor:hand;';
  yy+=bottom_height;
  var table_css = "background-color:"+backgroundColor+";border-top:"+border_top+";border-left:"+border_top+";border-right:"+border_bottom+";border-bottom:"+border_bottom+";height:"+bottom_height+"px;width:100%;padding:2px;";
  myWin=open("","displayWindow","width="+xx+",height="+yy+",status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes");
  myWin.document.open();
  var str = "<html><head><title>"+title+"</title></head>";
  str+="<body  marginwidth=0 marginheight=0 leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>";
  str+="<img src=\""+f+"\" hspace=0 vspace=0 border=0 width="+imgX+" height="+imgY+">";  
  str+="</body></html>";
  myWin.document.write(str);
  myWin.focus();
}
//-->                         
                         
                         
                         
                         
                         
                         
