function checkProduse() 
{
	if (document.getElementById("input").value == "") 
	{
		alert("Campul nu a fost completat");
		document.getElementById("input").focus();
		return false;
	}

}

function show_friend()
{
	document.getElementById("form_prieten").style.display = "block";
}
