function ventaneas(ancho,alto,nombreventana,pagina) {
	anchoPantalla=(screen.width/2)-(ancho/2)
	altoPantalla=(screen.height/2)-(alto/2)
	var win= eval('window.open(""+pagina+"",""+nombreventana+"","width="+ancho+",height="+alto+",resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,left="+anchoPantalla+",top="+altoPantalla+",noresize")')
}
function ventanea(ancho,alto,nombreventana,pagina) {
	anchoPantalla=(screen.width/2)-(ancho/2)
	altoPantalla=(screen.height/2)-(alto/2)
	var win= eval('window.open(""+pagina+"",""+nombreventana+"","width="+ancho+",height="+alto+",resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,left="+anchoPantalla+",top="+altoPantalla+",noresize")')
}

function ventaneasc(ancho,alto,nombreventana,pagina,scroling) {
	anchoPantalla=(screen.width/2)-(ancho/2)
	altoPantalla=(screen.height/2)-(alto/2)
	var win= eval('window.open(""+pagina+"",""+nombreventana+"","width="+ancho+",height="+alto+",resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroling+",left="+anchoPantalla+",top="+altoPantalla+",noresize")')
}

function localizador(){
	
	document.location.href="../localizador/prox_localizador.html";
	
	//ventaneas(800,600,'localizador','http://www.maptel.com/telepizza/cercanos/home_cerca.asp')
	}
	
function movilisto(){ventaneasc(780,580,'movilisto','../ocio_pizza/movilisto/index.htm','yes')}	
	
