
function cmbLine(isStab, disTextV, hLinkV)
{
	this.disText=disTextV;
	if (isStab==true)
	{
		this.hLink='http://www.stab-room.com/' + hLinkV;
	}
	else
	{
	this.hLink=hLinkV;
	}
	this.doPrint=funPrint(this);
}

function funPrint(cObj)
{
	document.write('<option value="');
	document.write(cObj.hLink);
	document.write('">');
	document.write(cObj.disText);
}

function formHandler(form)
{
	var URL = document.form.site.options[document.form.site.selectedIndex].value;
	window.location.href = URL;
}

function pageFoot_formHandler(pageFoot)
{
	var URL = document.pageFoot.site_base.options[document.pageFoot.site_base.selectedIndex].value;
	window.location.href = URL;
}

function pTop(lnkScript)
{

	document.write('<form name="form">&nbsp;');
	document.write('<select name="site" class="combo" onChange="javascript:formHandler()">');
	document.write('<option value="">Go to...');
	document.write('<script language="javascript" src="http://www.stab-room.com/jscripts/links/');
	document.write(lnkScript);
	document.write('"></script>');
}

function pBtm(lnkScript)
{
	document.write('<form name="pageFoot">&nbsp;');
	document.write('<select name="site_base" class="combo" onChange="javascript:pageFoot_formHandler()">');
	document.write('<option value="">Go to...');
	document.write('<script language="javascript" src="http://www.stab-room.com/jscripts/links/');
	document.write(lnkScript);
	document.write('"></script>');
}

function pEnd()
{
	document.write('</select></form>');
}
function pEnd2()
{
	document.write('</select></form>');
}


