<!-- CORTAR TEXTO EN TEXTAREAS -- >
function cortar(id,num)
	{
	if (document.getElementById(id).value.length>num) document.getElementById(id).value=document.getElementById(id).value.substr(0,num);
	}


<!-- PREGUNTA ANTES DE EJECUTAR SCRIPT -->
function borrarconfirmacion(pregunta,URL)
{
confirmar=confirm(pregunta);
	if (confirmar)
	{
    location.href=URL;
  	}
}
<!-- -->


<!-- NUEVA VENTANA CON ANCHO, ALTO Y SIN BARRAS NI BOTONES -->
function abrir_ventana(theURL,w,h)
	{
	var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=no, resizable=no,width=" + w + ",height=" + h;

	window.open(theURL,'',windowprops);
	}
<!-- -->


<!-- cambia EL SRC de la imagen -->
function ampliar(dato,titulo)
{  
		document.getElementById('galeria').src="";
		document.getElementById('galeria').src=dato+"-grande.jpg";
		document.getElementById('galeria').title=titulo;
}
<!-- -->


<!-- MOSTRAR/OCULTAR CAPA -->
function flip(rid)
  		{
    		current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
    		document.getElementById(rid).style.display = current;
  		}
<!-- -->


<!-- SOLO MOSTRAR CAPA -->
function mostrar_capa(rid)
  		{
			document.getElementById(rid).style.display='block';
  		}
<!-- -->
		
		
//Funcion Favoritos---------------
function favoritos(pagina,descripcion){
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url=pagina;
var titulo=descripcion;
window.external.AddFavorite(url,titulo);
}
else {
if(navigator.appName == "Netscape") 
alert ("Presione Crtl+D para aņadir esta direccion a Favoritos");
}
}
//---------------------