function RevealTM(r) {

    HideTMAll();

	document.getElementById("TMReveal" + r + "E").style.display = "none";
	document.getElementById("TMReveal" + r + "C1").style.display = "inline";
	document.getElementById("TMReveal" + r + "C2").style.display = "inline";
}

function RevealTMx(r) {
	document.getElementById("TMReveal" + r + "E").style.display = "none";
	document.getElementById("TMReveal" + r + "C1").style.display = "inline";
	document.getElementById("TMReveal" + r + "C2").style.display = "inline";


    var i=245
    var customcollect=new Array()
    //while (document.getElementById("test"+i)!=null){
    while (document.getElementById("TMReveal"+i+"E")!=null){
    customcollect[i]= document.getElementById("TMReveal"+i+"E")
    alert ("This is a Javascript Alert" + customcollect[i]);
    i++
}

}

function RevealTMSave(r) {
	document.getElementById("TMReveal" + r + "E").style.display = "none";
}

function HideTMm(r) {
	document.getElementById("TMReveal" + r + "C1").style.display = "none";
	document.getElementById("TMReveal" + r + "C2").style.display = "none";
	document.getElementById("TMReveal" + r + "E").style.display = "inline";
}

function HideTM(r) {
	document.getElementById("TMReveal" + r + "C1").style.display = "none";
	document.getElementById("TMReveal" + r + "C2").style.display = "none";
	document.getElementById("TMReveal" + r + "E").style.display = "inline";

}

function ShowPopup(pageURL){
	var win4 = null;
	winName = "TMPopup";
	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 = "TMPopupFromPopup";
	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 = "TMPopupRMS";
	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 = "TMPopupRMS";
	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();
}


