var robName = "tortillarob@";
var domName = "gmail.com";
var robHtmlText = '<A href="mailto:' + robName+domName + '">' + robName+domName + '</a>';
var prevPage = "Bio";
function displayDIV(showPage) {
	//alert(showPage);
	document.getElementById(prevPage).style.zIndex = 0;
	if (showPage == "Home" || showPage.substr(0,6) == "boxVid") {
		//an SWF, make visible
		document.getElementById("holdFlash").style.visibility = "visible";
	} else {
		//not an SWF, show DIV, hide SWF
		//alert("yes hide");
		document.getElementById("holdFlash").style.visibility = "hidden";
		document.getElementById(showPage).style.zIndex = 3;
		prevPage = showPage;
	}
}	
