// if(navigator.appName == "Microsoft Internet Explorer") document.getElementById['tabel'].style = "margin-top: 25px;";

function valid()
{
	if(document.getElementById("nume").value == "" || document.getElementById("email").value == "" || document.getElementById("comentariu").value == "") 
	{
		alert("Va rugam completati numele, email-ul si comentariul");
		return false;
	}
	else return true;
}

function sterge()
{
	document.getElementById("comentariu").innerHTML = "";
}

function popup(mylink, windowname)
{
	if(!window.focus) return true;
	var href;
	if(typeof(mylink) == 'string') href=mylink;
	else href=mylink.href;
		window.open(href, windowname, 'width=640,height=480,scrollbars=no');
	return false;
}