// JavaScript Document
function openPage1() {
	var url = "index_esp.html";
	params  = 'width='+screen.width;
 	params += ', height='+screen.height;
 	params += ', top=0, left=0'
	params += ', location=0'
 	params += ', fullscreen=yes';
 	
 	window.open(url,'windowname4', params);

	return document.getElementById("nombre").value;
}

function openPage2() {
	var url = "index_eng.html";
	params  = 'width='+screen.width;
 	params += ', height='+screen.height;
 	params += ', top=0, left=0'
	params += ', location=0'
 	params += ', fullscreen=yes';
 	
 	window.open(url,'windowname4', params);

	return document.getElementById("nombre").value;
}
