// JavaScript Document

function abreTour(){
	if( screen.width >= 1024 && screen.height >= 768 ) {
		openWindow('tour-virtual/1024x768/vagalume_vagalume.html', 840, 610);
	}else if(screen.width <= 800 && screen.height <= 600){
		openWindow('tour-virtual/800x600/vagalume_vagalume.html', 778, 410);
	}
}

function openWindow(url,w,h) {	
	var x = parseInt( (  screen.width  - w ) / 2 );
    var y = parseInt( (  screen.height - h ) / 2 );
	void window.open(url,"_blank", "'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left="+x+",top="+y+",width="+w+",height="+h+ "'");	
}

