function isEmail(string)
{
if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
return true;
else
return false;
}

function check(){
	var sw=0;
	if (document.getElementById('numele').value.length == 0)
	{
		alert('Please insert your name! \n');
		sw=1;
	}
	if ((document.getElementById('email').value.length == 0)&&(sw==0))
	{
		alert('Please insert your e-mail address! \n');
		sw=1;
	}
	
	if ((isEmail(document.getElementById('email').value) == false)&&(sw==0))
	{
		alert('Please insert a valid e-mail address! \n');
		sw=1;
	}
		
	if (sw==0)
	{	
		window.location.href='http://ipsos.ekontent.ro/home/side-menu/careers/cv-online/message-sent.aspx?name='+document.getElementById('numele').value+'&email='+document.getElementById('email').value+'&address1='+document.getElementById('adresaaa').value+'&address2='+document.getElementById('adress2').value+'&phone='+document.getElementById('phone').value+'&city='+document.getElementById('city').value+'&fax='+document.getElementById('fax').value+'&country='+document.getElementById('country').value+'&message='+document.getElementById('message').value;
	}
}


function updateFile(){
	document.getElementById('fakefile').value = document.getElementById('uploadfile').value;
}