function RevealBLP(r) {
	document.getElementById("BLPReveal" + r + "E").style.display = "none";
	document.getElementById("BLPReveal" + r + "C").style.display = "inline";
}

function HideBLP(r) {
	document.getElementById("BLPReveal" + r + "C").style.display = "none";
	document.getElementById("BLPReveal" + r + "E").style.display = "inline";
}

function RevealHAOption() {
	document.getElementById("HAOption").style.display = "inline";
}

function HideHAOption() {
	document.getElementById("HAOption").style.display = "none";
}

function ShowPopup(pageURL){
	var win4 = null;
	winName = "BLPPopup";
	leftPos = (top.screen.width - 400) * .5;
	topPos = (top.screen.height - 400) * .5;
	winwidth = 400;
	winheight = 400;
	winSpec = "status=no,scrollbars=yes,resizable=yes,left=" + leftPos + ",top=" + topPos + ",width=400,height=400";
	win4 = window.open(pageURL,winName,winSpec);
	win4.focus();
}

function ShowPopupFromPopup(pageURL){
	var win4 = null;
	winName = "BLPPopupFromPopup";
	leftPos = 50 + ((top.screen.width - 400) * .5);
	topPos = 50 + ((top.screen.height - 400) * .5);
	winwidth = 400;
	winheight = 400;
	winSpec = "status=no,scrollbars=yes,resizable=yes,left=" + leftPos + ",top=" + topPos + ",width=400,height=400";
	win4 = window.open(pageURL,winName,winSpec);
	win4.focus();
}

function ShowPopupReg(){
	var win4 = null;
	winName = "BLPPopupRMS";
	leftPos = (top.screen.width - 550) * .5;
	topPos = (top.screen.height - 580) * .5;
	winwidth = 550;
	winheight = 580;
	winSpec = "status=no,scrollbars=yes,resizable=yes,left=" + leftPos + ",top=" + topPos + ",width=550,height=580";
	win4 = window.open("/mms/register.asp",winName,winSpec);
	win4.focus();
}

function ShowPopupRegUpd(){
	var win4 = null;
	winName = "BLPPopupRMS";
	leftPos = (top.screen.width - 550) * .5;
	topPos = (top.screen.height - 580) * .5;
	winwidth = 550;
	winheight = 580;
	winSpec = "status=no,scrollbars=yes,resizable=yes,left=" + leftPos + ",top=" + topPos + ",width=550,height=580";
	win4 = window.open("/mms/profile.asp",winName,winSpec);
	win4.focus();
}


