function CreateFlashControl(divid,objname,width,height,flashurl,imageurl,url) {
	var d = document.getElementById(divid);
	d.innerHTML = '<object type="application/x-shockwave-flash" data="' + flashurl + '" width="' + width + '" height="' + height + '" title="' + objname + '"><param name="movie" value="' + flashurl + '" /><a href="' + url + '" border="0" target="_blank"><img src="' + imageurl +'" border="0" title="' + objname + '" alt="' + objname + '"></a></object>';
}