/* ----  Funciones epm  ---- */
/* ----  by Packo 2009  ---- */
/* ----       ED3       ---- */


/* ---- Forms busqueda --- */
function inputFo(idCampo,valor){
	if (document.getElementById(idCampo).value == valor ){
		document.getElementById(idCampo).value ='';
	}
	return true;
}
function inputBl(idCampo,valor){
	if (document.getElementById(idCampo).value == '' ){
		document.getElementById(idCampo).value = valor;
	}
	return true;
}

/* ---- Pestaņas Prueba --- */

function setDatoPrueba(NumDato){
	for (i =1; i <= 9; i++){
			if ( document.getElementById('menu'+i) ) document.getElementById('menu'+i).className='menu' ;
			if ( document.getElementById('dato'+i) ) document.getElementById('dato'+i).className='dato' ;
	}
	document.getElementById('menu'+NumDato).className='menu menuOn';
	document.getElementById('dato'+NumDato).className='dato datoOn';
	return;
}

/* ---- Carga el 'Me gusta' de FB --- */
function showIframe(id,url,ancho,alto,scrolling){
	document.getElementById(id).innerHTML = "<iframe src='"+url+"' width='"+ancho+"' height='"+alto+"' scrolling='"+scrolling+"' frameborder='0'></iframe>";
}
