// JavaScript Document
// find time offset from GMT to make countdown accurate
		offset = new Date();		
		Arrive = new Date(1231542000000 + (offset.getTimezoneOffset() * 60 * 1000)); // use milliseconds for constructor
		function DateDiff() { 
			//2160000
			//1168391543000
			//1168426800000
			//1168391543000 //10.1
			//1169031600000 //17.1
			//  1185098400000 22.7.2007
			 //   1193914800000 1.10.2007
			 //   1205751600000 17.3.2008
			    //1205755200000 17.3.2008
				//1206532800000 26.3
			    //1212318000000 01.06
			  /// 1221732000000  18.9.2008 12 Uhr
			  //1221742800000
			 // 10*60
			var td = document.getElementById("scroll"); 
			Today = new Date();
			
			Days = Math.floor((Date.parse(Arrive) - Date.parse(Today)) / 86400000);
			Hours = Math.floor(((Date.parse(Arrive) - Date.parse(Today)) % 86400000) / 3600000);
			Min = Math.floor((((Date.parse(Arrive) - Date.parse(Today)) % 86400000) % 3600000) / 60000);
			Sec = Math.floor(((((Date.parse(Arrive) - Date.parse(Today)) % 86400000) % 3600000) % 60000) / 1000);
			
			if ((Days <= 0) && (Hours <= 0)) {
				td.firstChild.nodeValue = ""; 
			} else {
				theS = (Days == 1) ? ("") : ("e");
				td.innerHTML = "<b> " + Days + " Tagen, " + Hours + " Stunden, " + Min + " Minuten, " + Sec + " Sekunden</b>"; 
			}
	
			window.setTimeout("DateDiff();",20);
	
		}
	
