function openWin1(fi,na,w,h) {
  window.open(fi,na,"width="+w+",height="+h+",left=50,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,favorites=no,resizable=yes");}

function new_win1(){
window.open("window1.html","","width=600,height=500");
}
function new_win2(){
window.open("window2.html","","width=600,height=500");
}

function CloseWin(){
    window.close();
}

function wopen(v){
w = open(v,"detail","width=450,height=280");
w.focus();
}


