function writethis(what) {
	document.write(what);
}

function changeIcon(which, active) {
	which.style.backgroundPosition = active == 1 ? "0px -38px" : "0px 0px";
	which.style.color = active == 1 ? "#000000" : "#807F84";
	
}

function initAll() {
	setUserOptions();
	initMenu();
	searchOnMouseOver();
}

function deInitAll() {
	saveSettings();
}

function setFlashWidth() {
	flashLeft2 = document.getElementById('flashLeftTd');
	flashTdWidth = document.body.offsetWidth > 1024 ? (document.body.offsetWidth < 1068 ? document.body.offsetWidth-738 : "333") : "294";
	flashLeft2.style.width = flashTdWidth+"px";
	createCookie("www.zahnaerztezentrum.de2", flashTdWidth, 1);
}

var IE = document.all?true:false;

if(!IE) {
	window.onresize = setFlashWidth;
}

window.onload = initAll;
window.onunload = deInitAll;
