/*****************************************************************************
setStyleSheet2.js - REads the default location cookie and sets the appropriate style sheet
					note - same as setStyleSheet.js with different directory structure
Modified: 

Copyright c 1999 Winnebago Software Company. All Rights Reserved.
*****************************************************************************/

function getCookie(Name) 
	{   
		var sReturnCookie = ""
		var search = Name + "="; 
		if (document.cookie.length > 0) 
		{ // if there are any cookies      
			offset = document.cookie.indexOf(search);
			if (offset != -1) 
			{ // if cookie exists          
				offset += search.length;
				// set index of beginning of value         
				end = document.cookie.indexOf(";", offset);
				// set index of end of cookie value         
				if (end == -1)             
					end = document.cookie.length;
					
				sReturnCookie =unescape(document.cookie.substring(offset, end))
				
				var nPos = sReturnCookie.indexOf("???",0); 
								
				if (nPos > -1) 
					sReturnCookie = "???"
									
			}    
		}
		return sReturnCookie;
	}

function setCookie(cookiename, value, expire) 
{   
	document.cookie = cookiename + "=" + escape(value)   + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
}	


function setmyCookie(cookiename,value)   
{
	var today = new Date()   ;
	var expires = new Date()  ; 
	expires.setTime(today.getTime() + 1000*60*60*24*365);
	setCookie(cookiename, value, expires);
}	


			var sLocationCode =  getCookie("LOCATIONCODE");
			if (sLocationCode == '???' || sLocationCode =="") //show default
  				document.write("<LINK REL='stylesheet' HREF='searchstyle.css' TYPE='text/css'>");
			else // show the correct style sheet
  				document.write("<LINK REL='stylesheet' HREF='" + sLocationCode + "/searchstyle.css' TYPE='text/css'>");


