function scValidate() {
if (Trim(document.contact_me.my_name.value).length<=0){alert("Please enter your name.");document.contact_me.my_name.focus();document.contact_me.my_name.style.backgroundColor="#FFCC33";return false;}
if (Trim(document.contact_me.my_contact.value).length<=0){alert("Please enter your e-mail address or phone number.");document.contact_me.my_contact.focus();document.contact_me.my_contact.style.backgroundColor="#FFCC33";return false;}
document.contact_me.submit();
document.contact_me.my_name.value=' ';document.contact_me.my_name.style.backgroundColor="#FFFFFF";
document.contact_me.my_contact.value=' ';document.contact_me.my_contact.style.backgroundColor="#FFFFFF";
document.contact_me.body_text.value=' ';
return false;
}
function Trim(nStr){return nStr.replace(/(^\s*)|(\s*$)/g, "");}

function popup(mylink, windowname, width,height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width='+width+',height='+height+',scrollbars=yes');

return false;
}
