(function vtOverRide() {
	try
	{
		var htv = document.getElementById("hypVirtualTour");
		if(htv)
		{
			var popupURL = htv.getAttribute("onclick");
				  var re1='.*?';	// Non-greedy match on filler
				  var re2='(\\\'.*?\\\')';	// Single Quote String 1
				  var p = new RegExp(re1+re2,["i"]);
				  var m = p.exec(popupURL);
				  if (m != null)
				  {
					  var strng1=m[1];
					  popURL = strng1.replace(/'/g,'');
				  }
				  
			var w = "430";
			var h = "440";
			
			var ehouse =/ehouse/g;
			var eres = ehouse.test(popURL);
			var flashFactory = /360Factory/g;
			var fres = flashFactory.test(popURL);
			if(fres){ w="900"; h="500"; }
				  
			popURL = popURL + "?keepthis=true&tb_iframe=true&height=" + h + "&width=" + w;
			if(eres)
			{
				htv.href = "javascript:void(window.open('"+popURL+"','VirtualTours','resizable=no,scrollbars=no,status=no,width=830,height=698,centerscreen=true'));";
			}
			else
			{
				htv.href = "javascript:void($.thickbox_open('Virtual Tours', '"+popURL+"',''));";
			}
			htv.setAttribute("onclick", "");
		}
		delete htv;
	}catch(e){ console.log(e); }
})();