/*
lukazland
*/
function validar(){
	paso=true;
	if($('nombre').value==''){
		alert('Ingrese un nombre');
		paso=false;
	}
	if($('email').value==''){
		alert('Ingrese un e-mail');
		paso=false;
	}
	if($('comentarios').value==''){
		alert('Ingrese sus comentarios');
		paso=false;
	}
	if(paso==true){

		var ajax=new Request({
			url:'../../../comentarios/act_save.php',
			method:'get',
			data: 'id_art='+$('id_articulo').value+'&titulo='+$('titulo').value+'&referencia='+$('referencia').value+'&nombre='+$('nombre').value+'&email='+$('email').value+'&comentario='+$('comentarios').value,
			onRequest:function(){
				$('nombre').setProperty('disabled','true');
				$('email').setProperty('disabled','true');
				$('comentarios').setProperty('disabled','true');
				$$('button').setProperty('disabled','true');
				var boton=document.frm_comentarios.enviar;
				boton.setProperty('disabled','true');			
			},
			onComplete:function(respuesta){
				//alert('datos enviados');
				mostrar_mensajes($('id_articulo').value);
				$('nombre').value="";
				$('email').value="";
				$('comentarios').value="";
				$('nombre').removeProperty('disabled');
				$('email').removeProperty('disabled');
				$('comentarios').removeProperty('disabled');
				$$('button').removeProperty('disabled');
				var boton=document.frm_comentarios.enviar;
				boton.removeProperty('disabled');
			}
		}).send();
	}
}

function mostrar_mensajes(id_articulo){
	var ajax = new Request({
		url:'../../../comentarios/dsp_comentarios.php',
		method:'get',
		data:'id_art='+id_articulo,
		onComplete:function(respuesta){
			//alert(respuesta);
			$('comment_content').set('html',respuesta);
		}
	}).send();
}

function eliminar(){
	if(confirm('Desea eliminar los comentarios seleccionados?')){
		$('frm_cometarios').action='eliminar.php';
		$('frm_cometarios').submit();
	}
}

function publicar(){
	
	$('frm_cometarios').action='publicar.php';
	$('frm_cometarios').submit();
	//alert($('frm_cometarios').action);
}