// JavaScript Document
var file_tour = new Array("bano","bar","bocaccio","boda","cn","fuente","lobby","rec_d","rec_s","rec_sala","restaurant","salon");
function showTour(opc){
	createCenterWindow('/tours/'+file_tour[opc]+'.htm', 'Tour', 640, 480);
	}
function createCenterWindow(page, name, w, h) {
	var t = Math.round((screen.height / 2) - (h / 2))
	var l = Math.round((screen.width / 2) - (w / 2))

	nw = window.open(page, name, 'width='+w+',height='+h+',address=no,status=no,resizable=no,scrollbars=no,top='+0+',left='+0)
	setTimeout('nw.focus();',250);
	}
