cookieSave = document.cookie;
window.cookieValue = cookieSave;
stationFind = window.cookieValue.indexOf("station");
if (stationFind > -1)
{
	semiFind = window.cookieValue.indexOf(";", stationFind);
	if (semiFind == -1)
		{
			semiFind = window.cookieValue.length;
		}
	window.station = window.cookieValue.substring(stationFind + 8, semiFind); 

	lineFind = window.station.indexOf("_");
	
	callStr = window.station.substring(0, lineFind);
	bandStr = window.station.substring(lineFind + 1);
	window.stationCall = callStr + "-" + bandStr;
	window.localized = true;
}
else
{
	window.station = "";
	window.localized = false;
}

//	alert(window.station);
