function openWind(fID, xsz, ysz){
        var features = "resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,width="+xsz+",height="+ysz+")";
        window.open(fID, "", features);
}

function WindowOpen(url){
window.open(url,'','width='+(screen.availWidth)+',height='+(screen.availHeight)+',top=0,screenY=0,left=0,screenX=0,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no');
}
