function abrirImg(name, foto, color){
	var newWindow = window.open("../vacio.html",name,"width=644,height=484,scrollbars=0,status=0");
	var ServerURL = self.location.href;
	var Position = ServerURL.indexOf("index");
	var Actual_Server = ServerURL.substring(Position,ServerURL);
	newWindow.location=Actual_Server+"../foto.asp?id="+foto+"&col="+color
	newWindow.focus()
	return false;
}

function abrirMapa(name, foto, color){
	var newWindow = window.open("../vacio.html",name,"width=990,height=700,scrollbars=0,status=0");
	var ServerURL = self.location.href;
	var Position = ServerURL.indexOf("index");
	var Actual_Server = ServerURL.substring(Position,ServerURL);
	newWindow.location=Actual_Server+"../mapa.asp?id="+foto+"&col="+color
	newWindow.focus()
	return false;
}

function abrirImgId(name, id, color){
	var newWindow = window.open("../vacio.html",name,"width=644,height=484,top=0,scrollbars=0,status=0");
	var ServerURL = self.location.href;
	var Position = ServerURL.indexOf("index");
	var Actual_Server = ServerURL.substring(Position,ServerURL);
	newWindow.location=Actual_Server+"../fotoid.asp?id="+id+"&col="+color
	newWindow.focus()
	return false;
}