// JScript source code

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 contact()
	{ 
	
		var sw=0;

		if (document.getElementById('nume').value.length == 0)
		{
			alert('Va rugam sa va introduceti numele! \n');
			sw=1;
		}
		if ((document.getElementById('prenume').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa va introduceti prenumele! \n');
			sw=1;
		}
		if ((document.getElementById('companie').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti numele companiei! \n');
			sw=1;
		} 				
		if ((document.getElementById('dsa').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa va introduceti adresa de e-mail! \n');
			sw=1;
		}  
		if ((isEmail(document.getElementById('dsa').value) == false)&&(sw==0))
		{
			alert('Va rugam sa introduceti o adresa de e-mail valida! \n');
			sw=1;
		}
		if ((document.getElementById('oras').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti orasul! \n');
			sw=1;
		}			
		if ((document.getElementById('tara').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti tara! \n');
			sw=1;
		}
		if ((document.getElementById('tel').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti numarul de telefon! \n');
			sw=1;
		}	
		
	if (sw==0)
	{
		window.location.href='http://z.ekontent.ro/DoEmail.aspx?redirect=http://www.tecnos.ro/contact/mesaj-trimis.aspx&from='+document.getElementById('dsa').value+'&to=contact@tecnos.ro&subiect=Mesaj%20de%20pe%20site&mesaj=Nume: '+document.getElementById('nume').value+'<br />Prenume: '+document.getElementById('prenume').value+'<br />Companie: '+document.getElementById('companie').value+'<br />Functie: '+document.getElementById('pozcompanie').value+'<br />Adresa: '+document.getElementById('adresa').value+'<br />Oras: '+document.getElementById('oras').value+'<br /> Cod postal: '+document.getElementById('codp').value+'<br />Tara: '+document.getElementById('tara').value+'<br />Telefon: '+document.getElementById('tel').value+'<br />Fax: '+document.getElementById('fax').value+'<br />Email: '+document.getElementById('dsa').value+'<br />Descriere tip de activitate: '+document.getElementById('activ').value+'<br />Subiect solicitare: '+document.getElementById('dsupl').value;
	}
}


function distribuitori()
	{ 
	
		var sw=0;

		if (document.getElementById('nume').value.length == 0)
		{
			alert('Va rugam sa va introduceti numele! \n');
			sw=1;
		}
		if ((document.getElementById('prenume').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa va introduceti prenumele! \n');
			sw=1;
		}
		if ((document.getElementById('companie').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti numele companiei! \n');
			sw=1;
		} 		
		if ((document.getElementById('oras').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti orasul! \n');
			sw=1;
		}	
		if ((document.getElementById('tel').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti numarul de telefon! \n');
			sw=1;
		}			
		if ((document.getElementById('dsa').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa va introduceti adresa de e-mail! \n');
			sw=1;
		}  
		if ((isEmail(document.getElementById('dsa').value) == false)&&(sw==0))
		{
			alert('Va rugam sa introduceti o adresa de e-mail valida! \n');
			sw=1;
		}				
		if ((document.getElementById('activ').value.length == 0)&&(sw==0))
		{
			alert('Va rugam sa introduceti domeniul de activitate! \n');
			sw=1;
		}			
		
	if (sw==0)
	{
		window.location.href='http://z.ekontent.ro/DoEmail.aspx?redirect=http://www.tecnos.ro/contact/mesaj-trimis.aspx&from='+document.getElementById('dsa').value+'&to=contact@tecnos.ro&subiect=Mesaj%20de%20la%20un%20distribuitor&mesaj=Nume: '+document.getElementById('nume').value+'<br />Prenume: '+document.getElementById('prenume').value+'<br />Companie: '+document.getElementById('companie').value+'<br />Functie: '+document.getElementById('pozcompanie').value+'<br />Adresa: '+document.getElementById('adresa').value+'<br />Oras: '+document.getElementById('oras').value+'<br /> Cod postal: '+document.getElementById('codp').value+'<br />Tara: '+document.getElementById('tara').value+'<br />Telefon: '+document.getElementById('tel').value+'<br />Fax: '+document.getElementById('fax').value+'<br />Email: '+document.getElementById('dsa').value+'<br />Domeniul de activitate: '+document.getElementById('activ').value+'<br />Date suplimentare: '+document.getElementById('dsupl').value;
	}
}