function keypress()
{
akey = event.keyCode;
if(akey ==13)
{
GotoUrl = 'Find.aspx?'+event.srcElement.name+'='+event.srcElement.value;
window.open(GotoUrl);
}
}
function keytab1(event)
{
akey = event.keyCode;
if(akey ==13)
{
document.forms[0].USERADDR.focus();
}
}
function keytab2(event)
{
akey = event.keyCode;
if(akey ==13)
{
document.forms[0].USERPHONE.focus();
}
}
function convertToUpper(textbox)
{
textbox.value = textbox.value.toUpperCase();
}
function checkNum(str)
{
return str.match(/D/)==null
}

