﻿
function find1() {
  var sw = 0;
  
	if (document.getElementById('search_box').value.length == 0) {
		alert('Va rugam sa introduceti termenul cautat! \n');
		sw = 1;
	}
	if ((document.getElementById('search_box').value.length < 3)&&(sw==0)) {
		alert('Termenul cautat trebuie sa aiba minim 3 litere! \n');
		sw = 1;
	}		
  if (sw == 0) {
    window.location.href='http://www.future-group.com.ro/prima-pagina/search-results.aspx?search='+document.getElementById('search_box').value;
	}
}

function find2() {
  var sw = 0;
  
	if (document.getElementById('search_box').value.length == 0) {
		alert('Please enter a search phrase! \n');
		sw = 1;
	}
	if ((document.getElementById('search_box').value.length < 3)&&(sw==0)) {
		alert('The search phrase must have at least 3 letters! \n');
		sw = 1;
	}		
  if (sw == 0) {
    window.location.href='http://www.future-group.com.ro/homepage/search-results.aspx?search='+document.getElementById('search_box').value;
	}
}

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_formular1() { 
	var sw = 0;
	
	if (isEmail(document.getElementById('email').value) == false) {
		alert('Va rugam sa introduceti o adresa de e-mail valida! \n');
		sw = 1;
	}	
	if ((document.getElementById('nume').value.length == 0) && (sw==0)) {
		alert('Va rugam sa va introduceti numele! \n');
		sw = 1;
	}
	/*if ((document.getElementById('telefon').value.length == 0)&&(sw==0)) {
		alert('Va rugam sa va introduceti numarul dvs. de telefon! \n');
		sw = 1;
	} */
	if ((document.getElementById('departament').value == 'Alegeti departamentul')&&(sw==0)) {
		alert('Va rugam sa va introduceti departamentul! \n');
		sw = 1;
	}		
	if ((document.getElementById('comentariu').value.length == 0)&&(sw==0)) {
		alert('Va rugam sa introduceti Comentariul! \n');
		sw = 1;
	}
		
	if (sw == 0) {
    window.location.href='http://z.ekontent.ro/DoEmail.aspx?redirect=http://www.future-group.com.ro/prima-pagina/contact-thanks.aspx&from='+document.getElementById('email').value+'&to=office@future-group.com.ro&subiect=Mesaj%20de%20pe%20site&mesaj=Email: '+document.getElementById('email').value+'<br /> Nume: '+document.getElementById('nume').value+'<br /> Telefon: '+document.getElementById('telefon').value+'<br /> Departament: '+document.getElementById('departament').value+'<br /> Comentariu:<br /><br />'+document.getElementById('comentariu').value;
	}
}

function contact_formular2() { 
	var sw = 0;
	
	if (isEmail(document.getElementById('email').value) == false) {
		alert('Please enter a valid e-mail address! \n');
		sw = 1;
	}	
	if ((document.getElementById('nume').value.length == 0) && (sw==0)) {
		alert('Please enter your name! \n');
		sw = 1;
	}
	/*if ((document.getElementById('telefon').value.length == 0)&&(sw==0)) {
		alert('Please enter your phone number! \n');
		sw = 1;
	} */
	if ((document.getElementById('departament').value == 'Alegeti departamentul')&&(sw==0)) {
		alert('Please enter your department! \n');
		sw = 1;
	}		
	if ((document.getElementById('comentariu').value.length == 0)&&(sw==0)) {
		alert('Please enter your comments! \n');
		sw = 1;
	}
		
	if (sw == 0) {
    window.location.href='http://z.ekontent.ro/DoEmail.aspx?redirect=http://www.future-group.com.ro/homepage/contact-thanks.aspx&from='+document.getElementById('email').value+'&to=emanuel.chiculita@ekontent.ro&subiect=Mesaj%20de%20pe%20site&mesaj=Email: '+document.getElementById('email').value+'<br /> Nume: '+document.getElementById('nume').value+'<br /> Telefon: '+document.getElementById('telefon').value+'<br /> Departament: '+document.getElementById('departament').value+'<br /> Comentariu:<br /><br />'+document.getElementById('comentariu').value;
	}
}

