
function activateSearch() {
	document.search.tofind.value = "";
}

function deactivateSearch() {
	if(document.search.tofind.value == "") {
		document.search.tofind.value = "Schnellsuche";
	}
}

function InitAll() {
	if(typeof Init == 'function') {
		Init();		// this site
	}
}

function WOpen(destination,name,w,h,opt) {
	if(opt) opt = ","+opt;
	return window.open(destination,name,"width="+w+",height="+h+opt);
}

