// JavaScript Document
	window.onload = function initialLoad()
	{
		updateOrientation();
	}
	
	function updateOrientation()
	{
		if (window.orientation)
		{
			switch(window.orientation)
			{
				case 0:
				case 180:
				//Hier kan eventueel een melding.
				//alert('please rotate your iPhone!');
				break;
			}
		}
	}

	if (window.orientation)
	{
		/* VERWIJDER DE ADRESBALK BIJ EEN IPHONE */
		window.addEventListener("load", function() { setTimeout(loaded, 100) }, false);
	
		function loaded() {
			document.getElementById("ACAswfDiv").style.visibility = "visible";
			window.scrollTo(0, 1); // pan to the bottom, hides the location bar
		}
	}

	

