/* Allgemeine JAvascript Funktionen */
// **************************************************
//
// **************************************************
function noop(){}
// **************************************************
/*
 This will resize the window when it is opened or
 refresh/reload is clicked to a width and height of  X x Y 
 with is placed first, height is placed second
*/
// **************************************************
//window.resizeTo(960,730)

window.onresize = resize;
window.saveInnerWidth = window.innerWidth;
window.saveInnerHeight = window.innerHeight;

// **************************************************
//
// **************************************************
function resize() {
//if (saveInnerWidth < window.innerWidth || 
//        saveInnerWidth > window.innerWidth || 
//        saveInnerHeight > window.innerHeight || 
//        saveInnerHeight > window.innerHeight ) 
//    {
//		window.resizeTo(960,730)
//    }
}

// **************************************************
//
// **************************************************
function klein()  {
		window.resizeTo(400,340)
    }

// **************************************************
//
// **************************************************
function fensterli(URI_adr, Titel, breite, hoehe) {
/* b= breite; h = hoehe; */
if (breite == 0) { breite=780;}
if (hoehe  == 0)  { hoehe=600;}
//	window.open("","name","toolbar,location,directories,status,menubar,scrollbars,resizable,width=460px,height=640px");
	window.open(URI_adr, "leer", "menubar,scrollbars,resizable,left=50,top=80,width="+breite+",height="+hoehe);
}
// **************************************************
//
// **************************************************
function fensterli(URI_adr, Titel, breite, hoehe, pdf) {
/* b= breite; h = hoehe; */
if (breite == 0) { breite=780;}
if (hoehe  == 0)  { hoehe=600;}
//	window.open("","name","toolbar,location,directories,status,menubar,scrollbars,resizable,width=460,height=640");
if (pdf == 0){
	window.open(URI_adr, "leer", "menubar,scrollbars,resizable,left=50,top=80,width="+breite+"px,height="+hoehe);
} else
	window.open(URI_adr, "leer", "scrollbars,resizable,left=50,top=80,width="+breite+"px,height="+hoehe);
}
// **************************************************
//
// **************************************************
function planfenster(URI_Adr,Titel,breite,hoehe) 
{
   if (breite < 1) { breite=820;}
   if (hoehe  < 1)  { hoehe=600;}
   
   window.open(URI_Adr, Titel, "scrollbars,resizable,left=40,top=50,width="+breite+"px ,height="+hoehe);
}
function drehscheibe(URI_Adr,Titel,breite,hoehe) 
{
   if (breite < 1) { breite=820;}
   if (hoehe  < 1)  { hoehe=600;}
   
   window.open(URI_Adr, Titel, "scrollbars,resizable,left=40,top=50,width="+breite+"px ,height="+hoehe);
}


