/* siteutils JavaScript -- TrollDrum support file
** Copyright (C) 2008,2009 Pat Deegan, psychogenic.com
** All Rights Reserved 
*/
function hideMe(_1){
var el=jQuery(_1);
if(!el){
return;
}
el.hide();
}
function showDivById(_3){
var el=jQuery("#"+_3);
if(!el){
return;
}
el.show();
}
function hideDivById(_5){
var el=jQuery("#"+_5);
if(!el){
return;
}
el.hide();
}
function buttonAction(_7,_8){
addSelectedClass(_7);
var _9=jQuery(_7);
var _a=_9.position();
startBusyIndicator(_a.top+75);
if(_8){
setTimeout(function(){
document.location=_8;
},750);
}
}
function validEmail(_b){
var _c=/^[A-Za-z0-9]+[A-Za-z0-9_\-\.]*\@[A-Za-z0-9]+[A-Za-z0-9_\-\.]*\.([A-Za-z]{2,4})$/;
return _c.test(_b);
}

