

  	<!-- LIMITA los caracteres máximos de los campos de formulario --!>
  	function maximo_caracteres(objeto,maximo)
		{
		actual=document.getElementById(objeto).value.length;		
		if (actual>maximo)
			{
			document.getElementById(objeto).value=document.getElementById(objeto).value.substring(0,maximo);
			alert ('Se ha superado el límite de caracteres permitidos para el campo '+objeto);
			}//del if
		}//de function
  
  
  
 	<!-- MUESTRA/OCULTA --!>
  	function flip(rid)
  		{
    	current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
    	document.getElementById(rid).style.display = current;
  		}//de function 
  
  
  
  	<!-- PREGUNTA ANTES DE IR A URL -->
	function confirmacion(pregunta,URL)
		{
		confirmar=confirm(pregunta);
			if (confirmar)
			{
			location.href=URL;
			}
		}//de function


	function Favorito() {
		title = "LosMiraderosDeCristina.com";
		url = "http://www.losmiraderosdecristina.com";
			if (window.sidebar) { // Mozilla Firefox Bookmark
					window.sidebar.addPanel(title, url,"");
			} 
		else if( window.external ) { // IE Favorite
					window.external.AddFavorite( url, title); 
		}
			else if(window.opera && window.print) { // Opera Hotlist
					alert("Lo Sentimos. Tu navegador web no suporta añadir automáticamente a Favoritos/Marcadores. Presione 'Ctrl-D' en Firefox o 'Ctrl-T' en Opera para añadirlo manualmente.");
					return true;
			}
	 }