//--- [ Activate flash without annoying click to activate ]--------------------
function insertFlash(naam) {
	var o_flashcontainer = (document.getElementById) ? document.getElementById(naam) : document.all[naam];
	if (o_flashcontainer != null) {
		var elm_type = (navigator.userAgent.indexOf("MSIE") < 0) ? "object" : "embed";
		var flashobject = document.createElement(elm_type);
		if (flashobject) {
			flashobject.setAttribute("width", "195");
			flashobject.setAttribute("height", "500");
			flashobject.type = "application/x-shockwave-flash";
			flashobject.setAttribute("src",  "menu.swf");
			flashobject.setAttribute("data", "menu.swf");
			o_flashcontainer.appendChild(flashobject);
		}
	}
}
