function rcda_save_on()
{
		/*coordenadaX = '10';
		coordenadaY = '-230';

		var contenido = document.createTextNode("[ Cerrar Ventana ]");
        var parrafo = document.createElement("p");
        parrafo.appendChild(contenido);

        var div = document.createElement("div");
		div.setAttribute("id", "div_vista");
		div.style.cssText = " top: " + coordenadaY + "px; left: " + coordenadaX + "px; cursor: pointer; ";
		document.body.appendChild(div);

        var enlace = document.createElement("div");
		enlace.setAttribute("id", "div_enlace");
		enlace.onclick = new Function("rcda_save_off();");
		
		var vista = document.createElement("iframe");
		vista.setAttribute("id", "frm_vista");
		vista.setAttribute("name", "frm_vista");
		vista.frameBorder = "0" ;
		document.getElementById("div_vista").appendChild(enlace);
		document.getElementById("div_vista").appendChild(vista);
		document.getElementById("div_enlace").appendChild(parrafo);*/
		$('#mensajes').dialog( 'option' , 'width' , 320 );
		$('#mensajes').dialog( 'option' , 'modal' , false );
		$('#mensajes').dialog( 'option' , 'beforeclose',
			function(event, ui) {
				window.frames.frm_vista.location.href = 'about:blank';
			}
		);
		$('#mensajes').dialog('open');

		document.CV_contacto.target = 'frm_vista';
		document.CV_contacto.action = 'mdl_contacto.asp';
		document.CV_contacto.submit();

		return false;
}
function rcda_save_off(){ 
  /*var vista = document.getElementById("div_vista");
  vista.parentNode.removeChild(vista);
  coordenadaL = 0 ;*/
}

function rcda_redirect(){ window.location = 'contacto.asp?ok=1'; }
