   function size_me(LineC) {
    var LineM ="";
    verh=1.5;
    rand=0.12;
    if (document.body && document.body.clientWidth) {
       wdth=document.body.clientWidth;
       hgth=document.body.clientHeight;
       }    
    fakt=( Number (wdth) / Number(hgth));

   if (fakt > verh) {
       nwdth=Math.round((hgth -(hgth* rand))* verh);
       nhgth=Math.round(nwdth / verh);
       }
   if (fakt < verh) {
       nhgth=Math.round((wdth -(wdth* rand))/ verh);
       nwdth=Math.round(nhgth * verh);
       }
   LineM=LineC 
   LineM=LineM.replace(/HGT/g,nhgth);
   LineM=LineM.replace(/WDT/g,nwdth);

   document.write (LineM); 
   }
 
function pos_Ebene(LineE) {
    var LineM ="";

    if (document.body && document.body.offsetWidth) 
       wdth=document.body.offsetWidth;
   LineM=LineE;
   LineM=LineM.replace(/WHD/g,wdth);
   document.write (LineM);
   } 
   
function gehe_home()
  {
    location.href = "http://www.form-ohne-norm.de/de/Start_1.htm"; 
  }

   function size_Fl(Fname,Fid,Fcolor) {
    verh=1.5;
    rand=0.12;
    if (document.body && document.body.clientWidth) {
       wdth=document.body.clientWidth;
       hgth=document.body.clientHeight;
       }
    fakt=( Number (wdth) / Number(hgth));

   if (fakt > verh) {
       nwdth=Math.round((hgth -(hgth* rand))* verh);
       nhgth=Math.round(nwdth / verh);
       }
   if (fakt < verh) {
       nhgth=Math.round((wdth -(wdth* rand))/ verh);
       nwdth=Math.round(nhgth * verh);
       }

var so = new SWFObject(Fname, Fid, nwdth, nhgth, "0", Fcolor);
// so.addVariable("flashVarText", "this is passed in via FlashVars"); // this line is optional, but this example uses the variable and displays this text inside the flash movie
so.useExpressInstall('Flash/expressinstall.swf');
so.write("flashcontent");

   }

