function suche() {
 if (document.form1.suche2.value == "") {
   alert("\n\nBitte Suchbegriff angeben!\n\n");
   return false;    
 } else {
   width  = 600;
   height = 400;
   var ah = screen.availHeight - 30;
   var aw = screen.availWidth - 10;
   var xc = (aw - width) / 2;
   var yc = (ah - height) / 2;
   var str = "height=" + height + ",innerHeight=" + height;
   str += ",width=" + width + ",innerWidth=" + width;
   str += ",scrollbars=1";
   str += ",left=" + xc + ",screenX=" + xc;
   str += ",top=" + yc + ",screenY=" + yc;
   file = "http://www.cinemedia.de/suche.php?search=" + document.form1.suche2.value;
   newWin = window.open(file,"suche",str);
   // newWin.document.form1.suchfeld.value=document.form1.suche2.value;
   newWin.focus();   
   return false; 
 }
}

