/**
 * Hiero 1.0.0b - Flash Headline Generator 
 * (c) 2008 by SALON91 GmbH (http://www.salon91.com)
 */

function changeDiv(divname, new_width, new_height) {
	var e = document.getElementById(divname);
    e.width = new_width;
	e.height = new_height;
}
		
function getHead(div) {
	var e = document.getElementById(div);
	return e.innerHTML;
}


// Pushes the Hiero Replacement with help of SWFObject
// Params: pushHiero ( divname, h2name, embedid )

function pushHiero(divname, h2_tag, embedid) {
	document.writeln("<script type=\"text/javascript\">");
	document.writeln("var so = new SWFObject(\"http://www.bronzel.de/images/hiero.swf\", \"" + embedid + "\", \"1\", \"1\", \"9\", \"#ffffff\");");
	document.writeln("so.addParam(\"FlashVars\",\"headline_text=" + getHead(h2_tag) + "&amp;idname=" + embedid + "\");");
	document.writeln("so.addParam(\"wmode\",\"transparent\");");
	document.writeln("so.addParam(\"allowScriptAccess\",\"sameDomain\");");
	document.writeln("so.write(\"" + divname + "\");");
 	document.writeln("</script>");
}
