<!--
//S.G./

function apri(link,w,h) {

  if (isNaN(arguments[1])) 
    w=800;
  if (isNaN(arguments[2]))
    h=600;
  mywin = window.open(link,'','scrollbars=yes,resizable=no,screenX=40,left=40,screenY=20,top=20,InnerWidht='+w+',width='+w+',InnerHeight='+h+',height='+h+',status=no,location=no,toolbar=no,menubar=no,titlebar=no,location=no');
}
//-->
