function doPopup() {
    props = "toolbar=0,location=0,directories=0,menubar=0" +
	",status=" + this.status +
	",scrollbars=" + this.scroll +
	",resizable=" + this.resize +
	",width=" + this.width +
	",height=" + this.height;

    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.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>');
}
