// JavaScript Document
function prod_over(id)
{

 document.getElementById("produs_"+id).style.cursor="Pointer";	document.getElementById("produs_"+id).style.backgroundImage="url(images/bck_produs-over.gif)";}
function prod_out(id)
{
	document.getElementById("produs_"+id).style.backgroundImage="url(images/bck_produs.gif)";
}

function getPoza(numepoza)
{
	mystring="";
	mystring+="<html>\r\n";
	mystring+="<head>\r\n";
	mystring+="<title>SmartCall</title>\r\n";
	mystring+="</head>\r\n";
	mystring+="<body>\r\n";
	mystring+="<a href=\"#\" ><img src=\"/images/";
	mystring+=numepoza;
	mystring+=".jpg";
	mystring+=" \"  onClick=\"window.close();\" border=\"0\" alt=\"Apasa pe imagine pentru a inchide fereastra!\"></a>";
	mystring+="</body>\r\n";
	mystring+="</html>\r\n";
	win_detalii=open("", "displayWindow" ,"width=500,height=500,status=no,resizable=yes,toolbar=no,menubar=no,scrollbars=yes,top=20,left=100");
	win_detalii.document.write(mystring);
	win_detalii.focus();
}
function validareVerif() 
{ 
	if (document.verif.tel.value=="")
	{ 
		alert("Introduceri un numar");
	}
	else
	{
		document.verif.submit();
	}
}

function ValideazaContact()
{
	
 if ((document.form_contact.nume.value!="") && (document.form_contact.tel.value!="") && (document.form_contact.email.value!=""))
{ 
		 document.form_contact.submit();
		 return;
}
	 
else { alert(" Va rugam sa completati toate cāmpurile obligatorii !"); } 
}