﻿function submitSearchBox(e){var keynum=GetEventKeyNum(e);if(keynum==60)return false;if(keynum==35){var temp=document.getElementById('txtSearch').value;var ampTest=temp.endsWith("&");if(ampTest===true)return false;}
if(keynum==13){goSearch();return false;}}
function resetSearchText(str){var trimmedText=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(trimmedText=='')document.getElementById(str).value='Search';}
function clearSearchText(str){var str2=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(str2=='Search')document.getElementById(str).value="";}

function clearSearchText_Cas(str){var str2=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(str2=='CAS Search')document.getElementById(str).value="";}
function clearSearchText_Name(str){var str2=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(str2=='Name Search')document.getElementById(str).value="";}
function clearSearchText_EINECS(str){var str2=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(str2=='EINECS Search')document.getElementById(str).value="";}


function resetSearchText_Cas(str){var trimmedText=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(trimmedText=='')document.getElementById(str).value='CAS Search';}
function resetSearchText_Name(str){var trimmedText=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(trimmedText=='')document.getElementById(str).value='Name Search';}
function resetSearchText_EINECS(str){var trimmedText=document.getElementById(str).value.replace(/^\s\s*/,'').replace(/\s\s*$/,'');if(trimmedText=='')document.getElementById(str).value='EINECS Search';}
