
function popup(URL, NAAM, DATA) {
window.open(URL, NAAM, DATA)
}

function iFrameHeight()
   {
   if(document.getElementById && !(document.all)) {
	h = document.getElementById('blockrandom').contentDocument.body.scrollHeight;
	document.getElementById('blockrandom').style.height = h;}
    else if(document.all) {
	h = document.frames('blockrandom').document.body.scrollHeight;
	document.all.blockrandom.style.height = h;}
   }

setInterval("iFrameHeight()", 1000)

//###### Kleines Fenster auf #########
function fensterauf1(URL)
   {
   NF=window.open(URL,"info","width=350,height=280, screenX=0, sreenY=0, directories=no, resizable=false,scrollbars=0, menubar=false");
   NF.focus; 
   }

//###### Großes Fenster auf #########
function fensterauf2(URL)
   {
   NF=window.open(URL,"info","width=780, height=580, screenX=0, sreenY=0, directories=no, resizable=false, scrollbars=1, menubar=false");
   NF.focus; 
   }
   
//###### Mittleres Fenster mit Scolling auf #########
function fensterauf3(URL)
   {
   NF=window.open(URL,"info","width=450, height=450, screenX=0, sreenY=0, directories=no, resizable=false, scrollbars=1, menubar=false");
   NF.focus; 
   }

//###### Fenster auf #########
function fensterauf4(URL)
   {
   NF=window.open(URL,"info","width=350,height=400, directories=no, resizable=false,scrollbars=0, menubar=false");
   NF.focus; 
   }
  


