var Flash = 
{
	printObject: function(url, width, height)
	{
		document.write('<object type="application/x-shockwave-flash"  data="'+url+'" width="'+width+'" height="'+height+'">\n');
		document.write('<param name="movie" value="'+url+'" /><param name="wmode" value="transparent" />\n');
		document.write('<param name="menu" value="false" /><param name="quality" value="high" />\n');
		document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
		document.write('</object>\n');		
	}		
}