// +++++++++++++++ funktion richtet fenster in der mitte aus ++++++++++++++++++

// ++++++++++++++++ anfang ++++++++++++++++++++++++++++++++++++++++++++++++++++

function center(){			
	var height = 200;		// fenster hoehe eingeben
	var width = 200;		// fenster breite eingeben
// ############################################################################	
// ############## folgendes nicht verŠndern ###################################
	var window_top = ((screen.height-height)/2)-20;//##########################
    var window_left = ((screen.width-width)/2)-5;//############################
 	window.open("index2.html","window","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,height="+height+",width="+width+",top=" + window_top + ",left=" + window_left);
}
// ++++++++++++++++ ende ++++++++++++++++++++++++++++++++++++++++++++++++++++++




// +++++++++++++++ fullscreen window ++++++++++++++++++++++++++++++++++++++++++

// ++++++++++++++++ anfang ++++++++++++++++++++++++++++++++++++++++++++++++++++
function full(){
	window.open("index2.html","window","menubar=no,resizable=1,scrollbars=1,status=1,toolbar=0,height="+(screen.availHeight-25)+",width="+(screen.availWidth-4)+",top=0,left=0");
}
// ++++++++++++++++ ende ++++++++++++++++++++++++++++++++++++++++++++++++++++++



// +++++++++++++++ window wird an bestimmter position geoeffnet +++++++++++++++

// ++++++++++++++++ anfang ++++++++++++++++++++++++++++++++++++++++++++++++++++

function position(){
	var height = 200;		// fenster hoehe eingeben
	var width = 200;		// fenster breite eingeben
	var window_top = 50;	// top position eingeben
    var window_left = 500;	// left position eingeben
// ############################################################################	
// ############## folgendes nicht verŠndern ###################################
 	window.open("index2.html","window","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,height="+height+",width="+width+",top=" + window_top + ",left=" + window_left);
}
// ++++++++++++++++ ende ++++++++++++++++++++++++++++++++++++++++++++++++++++++	