// JavaScript Document
function Change(n)
{
	
	if(n==1)
	{
		a = document.getElementById('mLeft');
		alert(a.style.background);
	   	a.style.background.src='url(../images/menuleft2.jpg)';
		alert(a.style.background);
	}
}

function checkEmail(email) 
{
	var re  = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (re.test(email))
		return true;
	else
		return false;
}
function Validate2()
{
	a = true;
	if(document.forms['contact-form'].fname.value=='') { a = false; }
	if(document.forms['contact-form'].lname.value=='') { a = false; }
	if(document.forms['contact-form'].phone.value=='') { a = false; }
	if(document.forms['contact-form'].email.value=='') { a = false; }
	if(document.forms['contact-form'].comments.value=='') { a = false; }
	if (!checkEmail(document.forms['contact-form'].email.value)) { a = false; }
	return a;
}
function Validate()
{
	a = true;
	if(document.forms['newss'].email.value=='') { a = false; }
	if (!checkEmail(document.forms['newss'].email.value)) { a = false; }
	return a;
}