 function openwindow( width, language ) {
 
   var url = 'flash.php?language=' + language + '#/' + language + '/home';
 
   if ( width == 1024 ) 
     F1 = window.open(url,"","width=1024,height=768,top=0,left=0, toolbar=1, location=1, status=0, menubar=0, scrollbars=1, resizable=1");
   if ( width == 1280 ) 
     F1 = window.open(url,"","width=1280,height=1024,top=0,left=0, toolbar=1, location=1, status=0, menubar=0, scrollbars=1, resizable=1");
 }

 var sw = screen.width;
 var sh = screen.height;  

 if ( sw < 1024 || sh < 768 ) {
   document.getElementById('area1').href = '/flash.php?sizex=-1&language=en#/en/home';
   document.getElementById('area2').href = '/flash.php?sizex=-1&language=de#/de/home';
 }
   
 if ( sw > 1023 && sw < 1280 ) {
   document.getElementById('area1').href = 'javascript:openwindow(1024,"en")';
   document.getElementById('area2').href = 'javascript:openwindow(1024,"de")';
 }
 
 if ( sw > 1279 ) {
   document.getElementById('area1').href = 'javascript:openwindow(1280,"en")';
   document.getElementById('area2').href = 'javascript:openwindow(1280,"de")';
 }