
<!-- POPUP -->
<!-- URL -->


<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


function close_window() {
	window.close();
}

function guardar() {
	window.document.execCommand('saveas');
}


var thisString;
function startText() {
thisString = document.formc.boolean1.value;
thisString = thisString.replace(/á/g, "a");
thisString = thisString.replace(/é/g, "e");
thisString = thisString.replace(/í/g, "i");
thisString = thisString.replace(/ó/g, "o");
thisString = thisString.replace(/ú/g, "u");
thisString = thisString.replace(/ñ/g, "n");
thisString = thisString.replace(/Ñ/g, "N");
thisString = thisString.replace(/N/g, "ñ");
document.formc.boolean1.value=thisString;


thisString = document.formc.boolean2.value;
thisString = thisString.replace(/á/g, "a");
thisString = thisString.replace(/é/g, "e");
thisString = thisString.replace(/í/g, "i");
thisString = thisString.replace(/ó/g, "o");
thisString = thisString.replace(/ú/g, "u");
thisString = thisString.replace(/ñ/g, "n");
thisString = thisString.replace(/Ñ/g, "N");
thisString = thisString.replace(/N/g, "ñ");
document.formc.boolean2.value=thisString;

thisString = document.formc.boolean3.value;
thisString = thisString.replace(/á/g, "a");
thisString = thisString.replace(/é/g, "e");
thisString = thisString.replace(/í/g, "i");
thisString = thisString.replace(/ó/g, "o");
thisString = thisString.replace(/ú/g, "u");
thisString = thisString.replace(/ñ/g, "n");
thisString = thisString.replace(/Ñ/g, "N");
thisString = thisString.replace(/N/g, "ñ");
document.formc.boolean3.value=thisString;

}



//  End -->


