function aufloesung()

 {
   var Hoehe, Breite;
   Hoehe=screen.height;
   Breite=screen.width;
   
   if (Breite<1024)
        document.write ("<link href=../format/768.css rel=stylesheet type=text/css>");
    
   if (Breite>=1024 & Breite<1152)
        document.write ("<link href=../format/1024.css rel=stylesheet type=text/css>");
		
   if (Breite>=1152 & Breite<1280)
        document.write ("<link href=../format/1152.css rel=stylesheet type=text/css>");	
		
   if (Breite>=1280)
        document.write ("<link href=../format/1280.css rel=stylesheet type=text/css>");			
     
	}
	
aufloesung();	
