function openWindow( url, name, width, height) {
    var outStr = 'height=' + height + ',width=' + width;
    {
        outStr = outStr +',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,top=100,left=100';
    }
    window.open(url, name, outStr);
}
function popup2(wintype) {
    NewWin=window.open(wintype,"NewWin","toolbar=0, directories=0, status=0, resizable=1, scrollbars=1, menubar=0, location=0,scrollbars=0,height=242, width=420");
    NewWin.window.focus();
}

