

function jcap(){


var _nume=document.getElementById("nume").value;

	var _email=document.getElementById("email").value;ex1=_email.split("@");ex2=_email.split(".");

	var _webpage=document.getElementById("webpage").value;

	var _coment=document.getElementById("coment").value;

	if (_nume==""){

	alert("Nu ati introdus numele!");
	return false;
	}

	else if(ex1.length!=2 || ex2.length<2){

	alert("Introduceti un email valid!");
	return false;
	}

	else if(_coment==""){

	alert("Nu ati introdus nici un coment!");
	return false;
	}

	else if(_webpage!='' && isNaN(_webpage)==false){

	alert("Incorect webpage");
	return false;
	}



}



//  End -->
