function flash(div,url,width,height,flashvars) {
	
	var embed='';	
	embed+='<object type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'">';
	embed+='<param name="movie" value="'+url+'" />';
	embed+='<param name="allowFullscreen" value="true" />';
	embed+='<param name="flashvars" value="'+flashvars+'" />'
	embed+='</object>';
	
	div.innerHTML=embed;	
}