function OpenWin( strURL ){
    var screen_width = screen.availWidth - 10;
    var screen_height = screen.availHeight - 30;
    strFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
    strFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

    windowname=window.open( strURL, "", strFeatures );
    windowname.focus();
}