function page_load()
{
	showMarquee();
}

function showMarquee()
{
	strText = "";
	strText += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	strText += "	 codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\"";
	strText += "	 width=770 height=20>";
    strText += "<param name=movie value=\"img/laufschrift.swf\" />";
    strText += "<param name=quality value=high />";
    strText += "<param name=bgcolor value=#2F2F66 />";
    strText += "<embed src=\"img/laufschrift.swf\" quality=high bgcolor=#2F2F66  width=770 height=20 type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></embed>";
	strText += "</object>";
	
	if (document.getElementById("placeholderHeader") != null)
		document.getElementById("placeholderHeader").innerHTML = strText;
}

//window.onload = page_load;
