// JavaScript Document

function createcontrol(divid, clsid, objectid, width, height, url, autostart,dcwmode)
{
	//alert(autostart);
	var conteudo=document.getElementById(divid)
	conteudo.innerHTML  = '<object  clas sid="' + clsid + '" id="' + objectid + '" type="application/x-shockwave-flash" data="' + autostart + '?clicktag='+ url +'" width="'+ width +'" height="'+ height +'" tabindex="0" title=""><param name="movie" value="' + autostart + '?clicktag='+ url +'" /><param name="quality" value="high" /><param name="menu" value="false" /><param name="wmode" value="'+ dcwmode +'" /></object>';
	 // '<object classid=' + clsid + ' id=' + objectid + ' width=' + width + ' height=' + height +'><param name="url" value=' + url + '><param name="autostart" value=' + autostart + '/>';
	
}

