function toggleLayer() {
	var tmpObject;
	
	tmpObject = document.getElementById("darkLayer");
	
	if(tmpObject) {
		tmpObject.style.width = (tmpObject.style.width != "100%" ? "100%" : "0px");
		tmpObject.style.height = (tmpObject.style.height != "100%" ? "100%" : "0px");
	}
	
	tmpObject = document.getElementById("flashContainer");
	
	if(tmpObject) {
		tmpObject.style.width = (tmpObject.style.width != "600px" ? "600px" : "0px");
		tmpObject.style.height = (tmpObject.style.height != "500px" ? "500px" : "0px");
	}
}

function openWindow(model) {
	toggleLayer();
	var so = new SWFObject("fileadmin/swf/main.swf", "flash", "100%", "100%", "8");
	so.addVariable("data", "fileadmin/swf/data.xml.php?model=" + model);
	so.addParam("scale", "noscale");
	so.write("flashContainer");
	
}

function closeWindow() {
	toggleLayer();
	return '';
} 

