// JavaScript Document

function init_cont()
{
	var nume_fizi = document.getElementById('id_cont');
	if(nume_fizi.innerText == "creare cont")
	{
	document.form_head.action="http://www.calorex.ro/4DACTION/wweb_cont_init";
	document.form_head.target="_self";
	document.form_head.submit();
	}
	else
	{
	document.form_head.action="http://www.calorex.ro/4DACTION/wweb_deta_clie";
	document.form_head.target="_self";
	document.form_head.submit();
	};
}

function init_loga()
{
	var nume_juri = document.getElementById('id_loga');
	if(nume_juri.innerText == "log in")
	{
	document.form_head.action="http://www.calorex.ro/4DACTION/wweb_loga_in";
	document.form_head.target="_self";
	document.form_head.submit();
	}
	else
	{
	delete_cookie ( "numarclie" , "/" );
	delete_cookie ( "numarclieordi" , "/" );
	delete_cookie ( "numeclie" , "/" );
	document.form_head.inte_numar_tert.value = 0;
	document.form_head.inte_numar_tert_ordi.value = 0;
	document.form_head.action="http://www.calorex.ro/4DACTION/wweb_loga_out";
	document.form_head.target="_self";
	document.form_head.submit();
	};
}

