function doPopup() {
    props = "directories="+ this.dirs +
	",location=" + this.locbar +
	",toolbar=" + this.toolbar +
	",menubar=" + this.menubar +
	",status=" + this.status +
	",scrollbars=" + this.scroll +
	",resizable=" + this.resize +
	",width=" + this.width +
	",height=" + this.height;
    //alert("doPopup(): props = " + props);
    this.window = window.open(this.location, this.name, props);
}

function popup(name, loc) {
    this.name = name;
    this.location = loc;
    this.width = 600;
    this.height = 400;
    this.locbar = 0;
    this.toolbar = 0;
    this.menubar = 0;
    this.dirs = 0;
    this.scroll = 0;
    this.resize = 0;
    this.status = 0;

    this.execute = doPopup;
}

function videoPop(name, loc) {
    pop = new popup(name, loc);
    pop.resize = 1;
    pop.width = 420;
    pop.height = 320;
    pop.execute();
}

function imgPop(name, loc) {
    pop = new popup(name, loc);
    pop.resize = 1;
    pop.width = 420;
    pop.height = 320;
    pop.execute();
}

function doBiztip(loc) {
    pop = new popup("biztip", loc);
    pop.scroll=1;
    pop.resize=1;
    pop.execute();
}

//<a href="javascript:openHelpWin('/static/biztips1.ws')" onmouseout="off()" onmouseover="on('biztips','/img/btn_biztips_on.gif')"><img src="/img/btn_biztips_off.gif" width="76" height="24" border="0" name="biztips" alt="BIZTIPS" hspace="10"></a>

function biztip(loc) {
    document.write('<a href="javascript:doBiztip(');
    document.write("'" + loc + "'");
    document.write(')" onmouseout="off()" ');
    document.write('onmouseover="on(' + "'biztips','/img/btn_biztips_on.gif')");
    document.write('"><img src="/img/btn_biztips_off.gif" ');
    document.write('width="76" height="24" border="0"');
    document.write(' name="biztips" alt="BIZTIPS" hspace="10"></a>');
}

