function makeWindow1(win_h, win_w, html_file){
specs_str= "toolbar=no,status=no,scrollbars=no,resizable=yes,menubar=no,height=" + win_h + ",width=" + win_w + ",screenx=400,screeny=100,left=400,top=100";
window1=window.open("","thewindow",specs_str);
window1.location.href= html_file;
}
