<!-- hide from older browserfunction checkEnter(e){ //e is event object passed from function invocation	var characterCode 	if(e && e.which){ //if which property of event object is supported (NN4)		e = e;		characterCode = e.which; //character code is contained in NN4's which property	}	else{		e = event;		characterCode = e.keyCode; //character code is contained in IE's keyCode property	}	if(characterCode == 13){ //if generated character code is equal to ascii 13 (if enter key)		submitSearch(); //submit the form		return false;	}			else{		return true;	}}function submitSearch() // MAR 20 bt{	if(!(document.getElementById('search-box').value == ""))	{		window.location = "search_beta.php?q="+document.getElementById('search-box').value;	}}document.write('<table border="0" width="100%" cellpadding="0" cellspacing="0"><form action="http://www.edromanguitars.com/newsite/search_beta.php" target="_self" id="form_searchdata" method="get"><tr><td><img src="http://www.edromanguitars.com/newsite/images/navsecondary-search.gif" border="0"></td></tr><tr><td align="left"><table border="0" cellpadding="0" cellspacing="0" align="left"><tr><td align="left" style="padding-top:10px; padding-bottom:10px; padding-left:5px; padding-right:5px;"><input name="q" id="q" title="Search" type="text" size="20" style="font-size:8pt;" value=""><br><input type="image" src="http://www.edromanguitars.com/newsite/images/search_button.png" value="submit" title="Search" id="Search" style="padding-top:5px; padding-bottom:0px; padding-left:0px; padding-right:5px;"></td></tr></table></td></tr><tr><td><img src="http://www.edromanguitars.com/newsite/images/navsecondary-navigation.gif" border="0"></td></tr></form></table>');
