// JavaScript Document
//------------------ Hauptebene ausrichten -------------------//

function ausrichten() {
var myClient = (document.all)? document.documentElement.clientWidth : window.innerWidth;
//alert (myClient)
var containerHPos = ((myClient-480)>20)? ((myClient-480)/2) : 20 ;

document.getElementById('content').style.left = containerHPos + "px";
document.getElementById('content').style.visibility = "visible";

//alert (containerHPos)
}

var offen = -1;
function openPage(page){
	//if(offen != '') offen.close();
	extern=window.open(page,"Kreolfleurage","scrollbars=auto,statusbar=0,toolbar=no,menubar=no,resizable=1,width=640,height=640");
	extern.resizeTo(760,640);
	extern.moveTo(0,0);
	extern.focus();
	offen= extern;
}

function closeWindow() {
	if (offen != -1) offen.close();
	//if (bestellung != -1) bestellung= -1;
	offen = -1;
	
}
