// JavaScript Document

function isEmailAddr(email)
{
  var result = false
  var theStr = new String(email)
  var index = theStr.indexOf("@");
  if (index > 0)
  {
    var pindex = theStr.indexOf(".",index);
    if ((pindex > index+1) && (theStr.length > pindex+1))
	result ="1";
  }
  return result;
}

function showtable(tblID)
{
	document.getElementById(tblID).className='showtable';
}
function hidetable(tblID)
{
	document.getElementById(tblID).className='hidetable';
}

/////Highlight textarea stuff/////

function highlight(x){
var x=x+1
document.forms[x].elements[0].select()
//if (document.getElementById && tally_url!="invalid")
//tally_calculate()
}