
function openWin(name, width, height) {
newwin = window.open("",name,'resizable=yes,toolbar=yes,directories=no,scrollbars=yes,menubar=yes,status=yes,location=no,width='+width+',height='+height);
newwin.focus();
}

function openWin2(name, width, height) {
newwin = window.open("",name,'resizable=no,toolbar=no,directories=no,scrollbars=no,menubar=no,status=yes,location=no,width='+width+',height='+height);
newwin.focus();
}

function openWin3(name, width, height) {
newwin = window.open("",name,'resizable=yes,toolbar=no,directories=no,scrollbars=yes,menubar=no,status=no,location=no,width='+width+',height='+height);
newwin.focus();
}

function openWin_v(name, width, height) {
newwin = window.open("",name,'resizable=yes,toolbar=no,directories=no,scrollbars=yes,menubar=no,status=yes,location=yes,width='+width+',height='+height);
newwin.focus();
}

