/*
============================================
Function: Javascript for AM2006 Web Site
Date: 3/21/06		
Developer: Anne Marie Hvid
============================================
	Date:		04/3/2006
	Update:		Added jscript functions used on the brain backgrounders and member directory page: MM_openBrWindow, ProtectEmail.
	Developer:	Anne Marie Hvid
============================================
	Date:		03/17/2009
	Update:		Moved jscript function used on Searching for Answers videos.
	Developer:	Yan Zhu
============================================
*/


	function MM_openBrWindow(theURL,winName,features) { //v2.0
  	window.open(theURL,winName,features);
	}
	
	//protect emails from email crawlers
	function ProtectEmail(user,site) {
	document.write('<a href=\"mailto:' + user + '@' + site + '\">' + user + '@' + site + '</a>');
	}

	//This function creates a pop up window that display the movie clip (MN)
	function popUp(url, height, width, top, left){
		popUpVideo = window.open(url, "popWindow", "left="+left+", top="+top+", height="+height+", width="+width+", resizable=no, scrollbars=no");
		if(popUpVideo){
			popUpVideo.focus();
		}
	}
