self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
var vpWindow = null;
var vpWindow2 = null;
function mapa() {
	if((vpWindow == null) || (vpWindow.closed) || (!vpWindow)){
		vpWindow = window.open("mapa.html","vpWindow",'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,width=' + 425 + ',height=' + 350);
	} else {
		vpWindow.focus();
		vpWindow.location = "mapa.html";
	}
	if (!vpWindow) {
		alert("Por favor desactive su bloqueador de popups para acceder al contenido.");
	} else {
		vpSubscribeWindow.moveTo((screen.availWidth/2)-270,(screen.availHeight/2)-185);
		vpWindow.moveTo(0,0);
	}
	
}

function setSizePar() {
	if ((document.body.clientHeight<705)||(document.body.clientWidth<968)) {
		mHeight='100%';
		mWidth='100%';
	} else {
		mHeight='705';
		mWidth='968';
	}
}


function window_open(url) {
	option="height=520,width=770,top=10,left=10,toolbar=1,scrollbars=yes,location=1,status=1,menubar=1,resizable=yes";
	window.open(url,'',option);
}

