// aboutus.js

test4redirect(1);  /* 0=root, 1=develop 2=test, 3=other non-vr synonym, 5=vr synonym */
function test4redirect(dir) { 
//alert (dir);
if (dir == 5) {}
else
   {
    if (( window.location.hostname.indexOf("venice-florida-vacation-rentals.com") !=-1 ) &&
        ( window.location.pathname.indexOf ("/vr") == -1 ) )
					{ window.location="http://www.venice-florida-vacation-rentals.com/vr/index.html"; }
   if (( window.location.hostname.indexOf("venicevacationrental.com") !=-1 ) &&
       ( window.location.pathname.indexOf ("/vr") == -1 ) )
					{ window.location="http://www.venicevacationrental.com/vr/index.html"; }
   }
}
 var browsername=navigator.appName;
	      if (browsername.indexOf("Netscape")!=-1)			{browsername="NS" }
          else {if (browsername.indexOf("Microsoft")!=-1)   {browsername="MSIE" }
                else										{browsername="other"}};  