
function openwindow02(theURL,theName,width,height) {
    window.open(theURL,theName,'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
}

function openwindow01(theURL,theName,width,height) {
    window.open(theURL,theName,'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no');
}