// JavaScript Document

function SelecteazaProducator(producator)
{
	if(producator!="")
	{
		document.location="http://www.e-genti.ro/"+producator+".html";
	}
}

var check1=null;
var check2=null;

function SelecteazaProdus(check)
{
	if(check.checked)
	{
		if((check1!=null)&&(check2!=null))
		{	
			check2.checked=false;
			check2=check1;
			check1=check;
		}
		else
			if(check2==null)
			{
				check2=check1;
				check1=check;
			}
			else
			{
				check1=check;
			}
	}
	else
	{
		if(check1==check)
		{
			check1=check2;
			check2=null;
		}
		else
		{
			check2=null;
		}
	}
}

function ComparaModele(form_producatori)
{
	if(check1&&check2)
	{
		document.location="http://www.e-genti.ro/compara/" + check1.value+"_"+check2.value+".html";
	}
}

function ClearCheckboxes()
{
	//alert("clear");
    var lb = "\x5B";
    var rb = "\x5D" 
    var elements = document.getElementsByTagName('input');
    var elnum;
    for(elnum=0; elnum<elements.length; elnum++)
	{
        var el = eval("elements"+lb+"elnum"+rb);
            var s = el.name;
		//alert(s);
        if (( el.type == 'checkbox') && ( s.substring(0,9) == 'checkbox_' )) 
		{
			//alert("clear check");
            el.checked = false;
        }
    }
}

function verifica_email(form)
{
	/*
	alert ("value="+form.email.value);
	if (form.email.value == ' Tastati adresa de Email')
		return false;
	*/
	var emailRegxp =/^([\w]+)(.[\w]+)*@([\w]+)(.[\w]{1,}){1,}$/;
	if(emailRegxp.test(form.email.value)!=true)
	{
		alert("Va rugam scrieti o adresa valabila de email");
		form.email.focus();
		return false;
	}
	return true;
}