function OpenScrollingPopup(sURL, iWidth, iHeight) 
{
	window.self.name = "main";
	var now = new Date();
	var sWinName = "vtour" + now.getTime();
	var remote = window.open(
		(sURL.substring(0,4)=='http' ? sURL : addStdArgsToURL(sURL)),
		sWinName,
		"width=" + iWidth + ",height=" + iHeight + ",toolbar=0,location=0,directories=0,resizable=1,status=1,menubar=0,scrollbars=1"
	);
	return sWinName;
}