function DisplayPage(pageview){

var location_href;

if(sniff.ns){
//   alert("Sorry but no Netscape support at present");
//return;
   switch(pageview){
     case 1: location_href = "../stableking_asp/Logon_On.asp"; break;
	 case 2: location_href = "../stableking_asp/New_Stable.asp"; break;
	 case 3: location_href = "../stableking_asp/Stable_Home.asp?guest=true&new_stable=true"; break;
	 case 4: location_href = "Service_Statement.html"; break;
   };
}else{
   switch(pageview){
     case 1: location_href = "../stableking_asp/Logon_On.asp"; break;
	 case 2: location_href = "../stableking_asp/New_Stable.asp"; break;
	 case 3: location_href = "../stableking_asp/Stable_Home.asp?guest=true&new_stable=true"; break;
	 case 4: location_href = "Service_Statement.html"; break;
   };
};

location.href = location_href;

return;
};
