// JavaScript Document
//Formularioen balidazioak egiteko erabiliko ditugun funtzioak
//frmBilatu zerbitzarira bidali aurretik sartutako datuak egokiak direla egiaztatu
function bilatuBalidatu(){
	txtBilaturenEdukia=document.getElementById("txtBilatu").value;
	if (txtBilaturenEdukia==null || txtBilaturenEdukia.length==0){
		return false;
	}
	return true;
}
//frmIgo zerbitzarira bidali aurretik sartutako eremuak egokiak direla egiaztatu
function postBalidatu(){
	updateRTEs();
	izenburua=document.getElementById("txtIzenburua").value;
	edukia=document.getElementById("frmPost").areaEdukia.value; 
	edukia=edukia.replace("style=\"BACKGROUND-COLOR: #f4f4f4\"","");
	document.getElementById("frmPost").areaEdukia.value=edukia;
	egilea=document.getElementById("txtEgilea").value;
	indG=document.getElementById("selGaia").selectedIndex;
	gaia=document.getElementById("selGaia").options[indG].value;
	indKat=document.getElementById("selKat").selectedIndex;
	kat=document.getElementById("selKat").options[indKat].value;
	indKur=document.getElementById("selKurtsoa").selectedIndex;
	kurtsoa=document.getElementById("selKurtsoa").options[indKur].value;
	document.getElementById("deskribapena").value=stripHTML(edukia); 
	if ((izenburua=="" || izenburua==null) || (edukia=="" || edukia==null) || (egilea=="" || egilea==null) || (gaia==0) || (kurtsoa==0) || (kat==0)){
		return false;	
	}
	return true;	
}

function editBalidatu(){
	updateRTEs();
	indKat=document.getElementById("selKat").selectedIndex;
	kat=document.getElementById("selKat").options[indKat].value;
	izenburua=document.getElementById("Izenburua").value;
	edukia=document.getElementById("form1").Edukia.value;
	edukia=edukia.replace("style=\"BACKGROUND-COLOR: #f4f4f4\"","");
	document.getElementById("form1").Edukia.value=edukia;
	egilea=document.getElementById("Egilea").value;
	indKur=document.getElementById("selKur").selectedIndex;
	kurtsoa=document.getElementById("selKur").options[indKur].value;
	document.getElementById("deskribapena").value=stripHTML(edukia); 
	if ((izenburua=="" || izenburua==null) || (edukia=="" || edukia==null) || (egilea=="" || egilea==null) || (kurtsoa==0) || (kat==0)){
		return false;	
	}
	return true;	
}
function resizeImg(cualImg) { 
	var ALTO_MAX=177;
	var ANCHO_MAX=235;
	var imagen = document.getElementById(cualImg); 
	var anchoFoto=imagen.width;
	var altoFoto=imagen.height;
	
	if (anchoFoto >= altoFoto){
		escala=anchoFoto/altoFoto;
		if (anchoFoto > ANCHO_MAX){
			anchoFoto=ANCHO_MAX;
			altoFoto=anchoFoto/escala;
		}
	}
	else{
		escala=altoFoto/anchoFoto;
		if (altoFoto > ALTO_MAX){
			altoFoto=ALTO_MAX;
			anchoFoto=altoFoto/escala;
		}
	}
	anchoNuevo=anchoFoto;
	altoNuevo=altoFoto;
	alert(anchoNuevo);
	alert(altoNuevo);
	imagen.width = anchoNuevo; 
	imagen.height = altoNuevo; 
}



function argazkiaAldatu(){
	bidea=document.getElementById("file").value;
	if (bidea=="" || bidea==null){
		bidea="../argazkiak/argazkiHutsa.GIF";
	}
	document.getElementById("foto").src=bidea;
}
function argazkiaAldatuPost(){
	bidea=document.getElementById("irudia").value;
	if (bidea=="" || bidea==null){
		bidea="argazkiak/argazkiHutsa.GIF";
	}
	document.getElementById("foto").src=bidea;
}

