if(document.layers){location.replace("radial-netscape4.html")};	
function flashwr(){
		document.write('<div id="flash" style="position:absolute; width:716; z-index:1; left: -1027; top: -694; border: 1px none #000000;"><object name="mixer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="1000" height="878"><param name="movie" value="images/mixer-play-250404.swf"><param name="quality" value="high"><param name="play" value="false"><embed src="images/mixer-play-250404.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="878"></embed></object></div>') 
}
	function onLoadHandler()
	{
		if(loadAction == "goHome") {
			scrollData = 1010 + loadData * 500;
			frames['content'].scrollTo(0, scrollData);
		} else if(loadAction == "scrollMenu") {
			if(frames['content'] && frames['content'].scrollMenu)
			{
				frames['content'].scrollMenu(loadData, 0);

			}
			else
			{

				scrollData = 1010 + loadData * 500;
				frames['content'].scrollTo(0, scrollData);
			}
		}
	}

	function scrollMenu(index, page) {
		loadAction = "scrollMenu";
		loadData = index;
		frames['content'].document.location.href = page+".php";
	}

	// Go to a specific Page
	function goSite(page) {
		loadAction = "";
		if(frames['content'] && frames['content'].goSite)
		{
			frames['content'].document.location.href = page+".php";
		}
	}

	// Go to a specific Page in home.php
	function goHome(index, page) {
		loadAction = "goHome";
		loadData = index;
		if(frames['content'] && frames['content'].goSite)
		{
			if(frames['content'].document.location.href.indexOf(page+'.php') != -1) {
				onLoadHandler();
			}  else {
				frames['content'].document.location.href = page+".php";
			}

		}
	}
	
	function showLayer(layerid) {
		window.document.getElementById(layerid).style.visibility = "visible";
	}
	
	function hideLayer(layerid) {
		window.document.getElementById(layerid).style.visibility = "hidden";
	} 