<!--			
function formValidation(form)
		{
			if(notEmpty(form.Name) || notEmpty(form.Phone) || notEmpty(form.Email)|| notEmpty(form.town) || notEmpty(form.Country))
			{
					return true;
			}
			return false;
		}

function notEmpty(elem)
{
	var str = elem.value;
	if(str.length == 0)
	{
		return false;
	}
	else
	{
		return true;
	}
}
function checkemail(source)
{
	var emailFilter=/^.+@.+\..{2,3}$/;
	if (!(emailFilter.test(source.value)))
	{ 
		   return false;
   }
   return true;
}
function Check(sender)
{
	if(!formValidation(sender))
	{
		alert("please fill empty fields");
		return false;				
	}
	if(!checkemail(sender.Email))
	{
		   alert("please enter valid e-mail!");
		return false;
	}

	return true;
}

ieHover = function() {
	var ieLIs = document.getElementById('menuholder').getElementsByTagName('li');
	for (var i=0; i<ieLIs.length; i++) if (ieLIs[i]) {
		ieLIs[i].onmouseover=function() {
			
		var ieUL = this.getElementsByTagName('ul')[0];
		if (ieUL) {
		var ieMat = document.createElement('iframe');
						ieMat.style.width=ieUL.offsetWidth+"px";
						ieMat.style.height=ieUL.offsetHeight+"px";	
						ieUL.insertBefore(ieMat,ieUL.firstChild);
						ieUL.style.zIndex="99";
						}
			
			this.className+=" iehover";
			}
		ieLIs[i].onmouseout=function() {
			this.className=this.className.replace(' iehover', '');
			}
			}
	}
if (window.attachEvent) window.attachEvent('onload', ieHover);
//-->
