function detailSwitch(id){
	var inDetailNav = new Array();
	inDetailNav[0] = "reasons";
	inDetailNav[1] = "testingFor";
	inDetailNav[2] = "howItWorks";
	inDetailNav[3] = "notDetected";
	inDetailNav[4] = "understandingResults";
	inDetailNav[5] = "questions";
	inDetailNav[6] = "risks";
	
	//set everything to off before turning desired one on 
	for(i=0; i<=6; i++){
		document.getElementById(inDetailNav[i]).style.background = "url(/images/arrowGreen.gif) no-repeat"
		document.getElementById(inDetailNav[i]).style.padding = "6px 0px 6px 25px";
		document.getElementById(inDetailNav[i]).style.backgroundPosition = "15px 10px";
		document.getElementById(inDetailNav[i] + 'Text').style.display = "none";		
	}
	
	//turn on desired items
	document.getElementById(id).style.background = "url(/images/inDetailLinkOn.gif) no-repeat";
	document.getElementById(id).style.backgroundPosition = "7px 3px";
	document.getElementById(id).style.padding = "6px 0px 6px 25px";
	
	//switch the title and the content to the right
	contentDivId = id + "Text";
	
	//display desired content and title divs
	document.getElementById(contentDivId).style.display = "block";	
}

function videoSwitch(videoNum){
	//switch the description and video to the left
	videoDivId = "video" + videoNum;
	
	//get a count of the videos that are on the page 
	var divArray = document.getElementsByName('video');
	divCount = divArray.length;
	
	//hide the others
	for(x=1;x<=divCount;x++){
		var video = "video" + x;
		document.getElementById(video).style.display = "none";
	}
	
	//display desired video and description
	document.getElementById(videoDivId).style.display = "block";	
}
function glossaryPop(glossaryTerm){
	var glossaryLink = '/includes/mto_includes_glossaryPopUp.asp#[' + glossaryTerm + "]";
	window.open(glossaryLink, "glossaryPopUp", "width=400, height=450, top=200, left=200, toolbar=no, location=no, scrollbars=yes, resizable=yes");
}
function tellAFriend(){
	var tellAFriendLink = '/includes/mto_includes_tell-a-friend.asp';
	window.open(tellAFriendLink, "tellAFriendPopUp", "width=538, height=380, top=200, left=200, toolbar=no, location=no, scrollbars=no, resizable=yes");	
}
function websiteFeedback(){
	var websiteFeedbackLink = '/includes/mto_includes_website-feedback.asp';
	window.open(websiteFeedbackLink, "websiteFeedbackPopUp", "width=538, height=375, top=200, left=200, toolbar=no, location=no, scrollbars=no, resizable=yes");	
}
function emailMe(){
	var emailMeLink = '/includes/mto_includes_email-me.asp';
	window.open(emailMeLink, "emailMePopUp", "width=538, height=260, top=200, left=200, toolbar=no, location=no, scrollbars=no, resizable=yes");	
}