var hlpWindow = null;
var style = '<link rel="stylesheet" type="text/css" href="/styles/domm.css">';
//var begin = '<html><head><title>Directory of Major Malls<sup>&reg;</sup> Online Help</title>' + style + 
//            '</head><body bgcolor="#FFFFFF">';
var begin = '<html><head><title>Directory of Major Malls&reg; Online Help</title>' + style + 
            '</head><body bgcolor="#FFFFFF">';
var end = '</body></html>';


function hlpWin(ref) {
    var url = "/helpwnd.html";
    var item = String(eval(ref));
    
    //Added
    //item = item + "<BR><BR>"
    
    var sz = item.length;
    var wd = 330;
    var ht = 200;
    
    if (hlpWindow == null || hlpWindow.closed) {
        //hlpWindow = window.open(url,"hlpWindow","dependent=yes,toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+wd+",height="+ht);
        hlpWindow = window.open(url,"hlpWindow","dependent=yes,toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+wd+",height="+ht);
    }
    var h = hlpWindow;
    h.document.open();
    //h.resizeTo(wd, sz/18*10); // fit window to text length
    h.resizeTo(wd, sz/18*10); // fit window to text length
    h.document.write(begin+item+end);    
    h.document.close();
    h.focus();
}
