var undefined;

 function LaunchCalc(URL)
	  	{
		window.open(URL,'myCalculator','width=590,height=450,scrollbars=yes,resizable=yes');
		}
	
function LinkAlert(URL)
	{
	MSG =       "You are leaving Emory Alliance CU's website and will be redirected to another site. ";
	MSG = MSG + "Emory Alliance CU makes no endorsements or claims about the accuracy or content of ";
	MSG = MSG + "the information contained in these sites.  The security and privacy policies on ";
	MSG = MSG + "these sites may be different than those of Emory Alliance CU.";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}
	
function SearchSite()
	{
	myQuery = document.f.NewQuery.value;
	UpdateQuery = myQuery + " site:www.emoryfcu.com";
	document.f.q.value = UpdateQuery;
	}

function popup(URL,name,width,height) {
	window.open(URL,name,'width='+width+',height='+height);	
	}