
function noClick() {}

function openFormWindow(strWindowURL, strForm) {

	switch (strForm) {

		case "ContactUs":
		intWidth = 550;
		intHeight = 500;
		break;

		case "PersonalSignUpPage":
		intWidth = 750;
		intHeight = 500;
		break;

		case "BusinessSignUpPage":
		intWidth = 750;
		intHeight = 500;
		break;

		case "PersonalOnlineAgreement":
		intWidth = 750;
		intHeight = 500;
		break;

		default:
		intWidth = 550;
		intHeight = 500;
		break;

	}

	objFormWindow298 = window.open(strWebRoot + strWindowURL,'objFormWindow298','width=' + intWidth + ',height=' + intHeight + ',scrollbars=yes,resizable=yes')
	objFormWindow298.focus();

}

function openJobForm() {

	objIntroAreaDIV = document.getElementById("introAreaT1A");
	objRegExp = new RegExp("<h1>(.[^<]*)", "i");
	objRegExp.exec(objIntroAreaDIV.innerHTML);
	strJobTitle = RegExp.$1;

	LSBJobwindow32948 = window.open("forms/hr-form.asp?job=" + strJobTitle, "LSBJobwindow32948", "width=650,height=500,scrollbars=yes,resizable=yes");
	LSBJobwindow32948.focus();

}

function getSpeedbumpLink() {

	strFullURL = window.location.href;
	aryURLPieces = strFullURL.split("speedbump.asp?url=");
	return aryURLPieces[1];

}