function MM_openBrWindow(theURL,winName,features) { //v2.0
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width-334)/2
		topPos = (screen.height-385)/3
	}else{
		leftPos = (screen.InnerWidth-334)/2
		topPos = (screen.InnerHeight-385)/3
	}
	
	newWin=newWindow = window.open(theURL, "newWin", "toolbar=no,location=no,scrollbars=no,resizable=no,left="+leftPos+",top="+topPos+","+features+"")
	newWin.window.focus();
}
function MM_openBrWindowScrll(theURL,winName,features) { //v2.0
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width-334)/2
		topPos = (screen.height-385)/3
	}else{
		leftPos = (screen.InnerWidth-334)/2
		topPos = (screen.InnerHeight-385)/3
	}
	
	newWin=newWindow = window.open(theURL, "newWin", "toolbar=no,location=no,scrollbars=yes,resizable=no,left="+leftPos+",top="+topPos+","+features+"")
	newWin.window.focus();
}

function callTour(page)
{
  //win = window.open(page, null, 'resizable=no, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, width=500, height=510, top=5, left=5');
  win = window.open(page, 'RTV', 'location=no, menubar=no, resizable=no, status=no, toolbar=no, width=500, height=516, top=5, left=5');
  win.window.focus();
  //history.go(-1);
  return false;
}
