<!-- 
// © 2003 Luftbilder.de, code & design by Rasmus-von-Bargen.de
function popup_poster() 
{ 
poster = window.open('popup_poster.html','poster','toolbar=0,scrollbars=0,resizable=0,width=520,height=390,top=118,left=90');
} 

function popup_luftbild_des_monats() 
{ 
lb_d_monats = window.open('popup_luftbild_des_monats.html','lb_d_monats','toolbar=0,scrollbars=0,resizable=0,width=520,height=390,top=118,left=90');
} 

function popup_filmformate() 
{ 
filmformatevergleich = window.open('popup_filmformate.html','filmformatevergleich','toolbar=0,scrollbars=0,resizable=0,width=332,height=600,top=20,left=90');
} 

// Hintergrundfarbe bei mouseOver
function mouse_over(src,clr_over)
{

 if (!src.contains(event.fromElement))
 {
 src.style.cursor = 'hand';
 src.bgColor = clr_over;
 }

}

// Hintergrundfarbe bei mouseOut
function mouse_out(src,clr_in)
{
if (!src.contains(event.toElement))
{
src.style.cursor = 'hand';
src.bgColor = clr_in;
}
}


//Fenster maximieren
function maximieren()
{
self.moveTo(0,0) 
self.resizeTo(screen.availWidth,screen.availHeight) 
}
 
//Formular bearbeiten 
function clearDefaultQuery(el) {
if (el.defaultValue==el.value) el.value = "";
}


// Title bei BEreichswechsel neu laden
function reload_header(bereich) {
parent.title.location.href = "../title.php";
}

//-->


