// Ensure public applications are using the new domain of vancouver.ca
// Applications Development - January 2005
//
<!--
function OpenRedirectPath() {
      var new_href = document.location.href;
	  if(new_href.indexOf( "iwww") > -1){ 
	    new_href = new_href.replace("iwww.city.vancouver.bc.ca","internal.vancouver.ca");
	    document.location.href = new_href;
	  }
	  else {
	  	if(new_href.indexOf( "www") > -1){ 
	    new_href = new_href.replace("www.city.vancouver.bc.ca","vancouver.ca");
	    new_href = new_href.replace("www.vancouver.ca","vancouver.ca");
	  	document.location.href = new_href;
	    }
	  }
}
//
