function openWin(URL,ht,wd) {
    if(ht == null) { ht = 400; }
    if(wd == null) { wd = 475; }
    window_object = window.open(URL,'External','width=' + wd + ',height=' + ht +',toolbar=yes,scrollbars=yes,resizable=yes,location=yes,menubar=yes');
    window_object.focus();
}

function openNamedWindow(nme,URL,ht,wd) {
    if(ht == null) { ht = 400; }
    if(wd == null) { wd = 475; }
    window_object = window.open(URL,nme,'width=' + wd + ',height=' + ht +',toolbar=no,scrollbars=yes,resizable=yes,location=no,menubar=no');
    window_object.focus();
}

function openHelp(URL,ht,wd) {
    if(ht == null) { ht = 400; }
    if(wd == null) { wd = 475; }
    window_object = window.open(URL,'Help','width=' + wd + ',height=' + ht +',toolbar=no,scrollbars=yes,resizable=yes,location=no,menubar=no');
    window_object.focus();
}

var myText = "";
function openHTMLEditor(URL,val)
{
    myText = val;
    window_object = window.open(URL,'Help','width=540,height=410,toolbar=no,scrollbars=yes,resizable=yes,location=no,menubar=no');
    window_object.focus();
}

