function clickIt(thisObj,direction){
	switch(direction){
		case 'up' : thisObj.style.border='1px solid #eee'; thisObj.style.borderBottom='1px solid #c0c0c0'; thisObj.style.borderRight='1px solid #c0c0c0'; break;
		case 'down' : thisObj.style.border='1px solid #c0c0c0'; thisObj.style.borderBottom='1px solid #eee'; thisObj.style.borderRight='1px solid #eee'; break;
	}
}

function validateNewsletter(){
	var obj=document.forms.newsletter;
	var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	var regVal = obj.email.value;
	
	//if ((obj.name.value!='')&&(obj.surname.value!='')&&(obj.country.value!='')&&(reg.test(obj.email.value)!=false)&&(obj.) document.forms.newsletter.submit();
	if ((obj.name.value=='')||(obj.surname.value=='')||(obj.country.value=='')) alert("You have to fill in all the fields");
	else if (reg.test(obj.email.value)==false) alert("Type in the correct e-mail");
	else if (obj.agree1.checked==false) alert("You have to agree to the terms and conditions");
	else document.forms.newsletter.submit();
}