/*
* Author: Tom Klingenberg
* Js workaround for Swf Frontpage Opener
*/
function RunOpnr(sUrl, sAlt, height)
{
    document.write('<div style="height:' + height + 'px"><object type="application/x-shockwave-flash" data="' + sUrl + '" width="740" height="' + height + '" id="openerflash">\n');
    document.write('<param name="movie" value="' + sUrl + '" />\n');
	document.write(sAlt);
    document.write('</object></div>\n');
}