Ajax Layer JavaScript DHTML




  MvWindow
  
   
   
   
   
  
  
    
  
  
  



  
  
    
    
        
            
               
              
                
                  
                  MvWindow 1
                  MvWindow 2
                  MvWindow 3
                  Clear Cookies
                  Show All
                   
                
              
               
            
        
    
          
    
  
  
  


  
  var f1 = new mvwindow('f1'); // create window objekt ( required for each window )
  var f2 = new mvwindow('f2'); // create window objekt ( required for each window )
  var f3 = new mvwindow('f3'); // create window objekt ( required for each window )
  var f4 = new mvwindow('f4'); // create window objekt ( required for each window )
  
  newMvWindow('f1'); // create window f1 ( required for each window )
  newMvWindow('f2'); // create window f2 ( required for each window )
  newMvWindow('f3'); // create window f3 ( required for each window )
  newMvWindow('f4'); // create window f3 ( required for each window )
  
  // custom left start position ( not required )
  lpos = Math.round((document.body.clientWidth-576)/2);
  if (lpos < 10){
    lpos = 10;
  }
  
  // custom top start position ( not required )
  tpos = Math.round((document.body.clientHeight-600)/2);
  if (tpos < 10){
    tpos = 10;
  }
  
  // setsize(width,height,top,left)  position and size of the windows. ( not required )
  f1.setsize(510,290,250,lpos+15);
  f2.setsize(510,290,267,lpos+32);
  f3.setsize(170,185,284,lpos+49);
  f4.setsize(350,85,300,lpos+69);
  
  f1.hide(); // hide the window ( not required )
  f2.hide(); // hide the window ( not required )
  f3.hide(); // hide the window ( not required )
  f4.show(); // show window f4 ( not required )
  
  f1.settitle("MvWindow 1");  // set window title ( not required )
  f2.settitle("MvWindow 2");  // set window title ( not required )
  f3.settitle("MvWindow 3");  // set window title ( not required )
  f4.settitle("MvWindow 4");  // set window title ( not required )
  
  // write content to the windows
  
  var f1content = "Achtung! Dieser Blindtext wird gerade durch 130 Millionen Rezeptoren Ihrer Netzhaut erfasst. Die Zellen werden dadurch in einen Erregungszustand versetzt, der sich über den Sehnerv in dem hinteren Teil Ihres Gehirns ausbreitet. Von dort aus überträgt sich die Erregung in Sekundenbruchteilen auch in andere Bereiche Ihres Grosshirns. Ihr Stirnlappen wird stimuliert. Von dort aus gehen jetzt Willensimpulse aus, die Ihr zentrales Nervensystem in konkrete Handlungen umsetzt. Kopf und Augen reagieren bereits. Sie folgen dem Text, nehmen die darin enthaltenen Informationen auf wie ein Schwamm. Nicht auszudenken, was mit Ihnen hätte passieren können, wenn dieser Blindtext durch einen echten Text ersetzt worden wäre.";  
  var f2content = "This, of course, is not the real copy for this advertisement. The real words will be written once you have approved the headline. Rest assured, the words will expand the concept. With clarity. Conviction. And even a little wit. Because in today’s competitive marketing environment, the body copy of your advertisment must lead the reader through a series of disarmingly simple thoughts. All your supporting arguments must be communicated with simplicity and charm. And in such a way that the reader will read on. (After all, that’s a reader’s job: to read, isn’t it?)";
  f1.setcontent(f1content);
  f2.setcontent(f2content);
  f3.setcontent("");
  f4.setcontent('This web page is meant only as example of the MvWindow Javascript
https://sourceforge.net/projects/mvwindow/');
    
  mbarleftpos = Math.round((document.body.clientWidth-550)/2)+22;  //set minimized left window start position ( not required, default 0 )
  mbarbottompos = 27;
  
  cookieactivate(); // set cookies aktiv ( not required )
  
  // Protect the page from content selection. ( not required )
  document.onselectstart=new Function ("return false")
  if (window.sidebar){
    document.onmousedown=disableselect
    document.onclick=reEnable
    }
  // Browser window Resizing ( not required )
  onresize = pagereloader;
  function pagereloader()
  {
    mbarleftpos = Math.round((document.body.clientWidth-550)/2)+22;  //update minimized window left start position
    browserresize();  // move the windows to the new position.
  }
  
  

 
           
       
MvWindow_Beta1.zip( 119 k)