var url = 'http://www.punctul.ro/'

function showcomments(){
	var comdiv = document.getElementById('comments')
	toggle(comdiv)
}

function toggle(obj){
	if (obj.style.display!='block')
		obj.style.display='block'
	else
		obj.style.display='none'
}

function validMail(){
	var name = document.getElementById('n_nume').value
	if (name.replace(/\s+/g,'')=='' || name.length<3){
		alert ('Numele trebuie sa aiba minim 3 caractere')
		return false
	}
	var mail = document.getElementById('n_mail').value
	if (!mail.match(/[\w\.\_\-]+@[\w\.\_\-]+\.[\w]{2,5}/gi)){
		alert ('e-mailul '+mail+' nu este valid!')
		return false
	}
	return true
}

function showLinked(){
	var linked = document.getElementById('linked_menu')
	toggle(linked)
}

function print_article(aid){
	window.open(url+'print.php?aid='+aid)
	return false
}
