var intScreenWidth = (screen.width - 640) / 2; 
var intScreenHeight = (screen.height - 640) / 2; 

function Goto(strURL){
	if(strURL!=''){
		document.location.href=strURL
	}
}
function openPopup(url){
	var intScreenLeft = (screen.width - 700) / 2; 
	var intScreenTop = (screen.height - 600) / 2; 	
	if (url != ""){
		var objGalleryWindow = window.open(url,'gallery','width=700,height=600,left='+intScreenLeft+',top='+intScreenTop+',directories=0,fullscreen=0,location=0,menubar=0,scrollbars=1,resizable=1,status=0,toolbar=0');
	}
}

function ViewPanorama(intID){
	var intScreenLeft = (screen.width - 550) / 2; 
	var intScreenTop = (screen.height - 550) / 2; 	

	if (intID != ""){
		var objPanoramaWindow = window.open('/panorama_pop.asp?id='+intID,'panorama','height=550,width=550,left='+intScreenLeft+',top='+intScreenTop+',directories=0,fullscreen=0,location=0,menubar=0,scrollbars=1,resizable=0,status=0,toolbar=0');
	}
}