// JavaScript Document

function openWin(site,frameName,width,height,resz,scrlb)
{
    var y = (Math.round((screen.availHeight-height)/2))
    var x = (Math.round((screen.availWidth-width)/2))
    showWin = open(site,frameName,"width="+width+",height="+height+",top="+y+",left="+x+",scrollbars="+scrlb+",status=0,resizable="+resz+",location=0,menubar=0,toolbar=0,fullscreen=0");
  showWin.focus();
}
