/***************************************************************************
 *                           Contact US Script
 *                          -------------------
 *   begin               : Monday, May 29, 2006
 *   copyright          : (C) 2006 The RightClick  $Team = "www.rightclick.ir";
 *   email                : info@rightclick.ir
 *
 *   $Id: Contact US Script,v 2.0 2006/05/29 13:20:00 $
 *
 ***************************************************************************/
function OnLoadFunction()
{
	document.MyFrm.Name.focus();
}

function InputFocused(Obj)
{
	Obj.className = 'FocusedInput';
}

function InputBlur(Obj)
{
	Obj.className = 'none';
}

function EmailValidate(EmailAddr)
{
	re=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
	return re.test(EmailAddr);
}

function loading(turn)
{
	if(turn)
	{
		window.document.getElementById("Result").style.display = '';
		window.document.getElementById("Result").innerHTML = '<span dir="ltr"><font color="#000080">Loading ...</font></span>';
		window.document.body.style.cursor = "wait";
		window.status = 'Please wait...';
	} else {
		window.document.body.style.cursor = '';
		window.status = 'Done';
	}

	return true;
}
