	var loop = 15;

	function optimalResolution(){
		//Tabelle in Breite reduzieren wenn Auflösung >1024
		//if(screen.width > 1024){
//			document.getElementById('MAIN').style.width = "85%";
//		}			
	}
	
	function doRedirect(){
		wnd = window.setTimeout('doRedirect()',1000);
		loop --;
		
		document.getElementById('counter').firstChild.nodeValue = loop + "";
		
		if(loop == 0){
			window.location.href = 'index.php?Id=1';
			loop = 16;
		}else{
			
		}
	}
