function InfoGuyKeyCheck(evt) {
	if (window.event.keyCode == 13)
	{ InfoGuyLaunch() }
}

function InfoGuyLaunch()
{
	var hndInfoGuyQuestion = document.getElementById('InfoGuyQuestion');
	var searchKeywords = hndInfoGuyQuestion.value;
	var InfoGuyURL = 'http://www.wecu.com/secure/infoguy.cfm' + '?keyword=' + escape(searchKeywords);
	var hndInfoGuyWindow = window.open(InfoGuyURL, 'InfoGuy', 'menubar=yes, toolbar=yes, scrollbars=no, status=no, location=yes, width=780, height=550, resizable=yes');  
	hndInfoGuyWindow.focus();
}