function CreateControl(divID, classID, objectID, nWidth, nHeight, addText)
{
	var d = document.getElementById(divID);
	var obj = '<object id="'+objectID+'" classid="clsid:'+classID+'" width="'+nWidth+'" height="'+nHeight+' " '+addText+' ></object>'
	
	//d.innerHTML = obj;
	//alert('<object ID="'+objectID+'" classid ="clsid:'+classID+' width="'+nWidth+'" height="'+nHeight+'" '+addText+' />');
	
	//document.writeln ("<script>");
	//document.write('document.write(\'');
	document.write(obj);
	//document.write('\');');
	//document.writeln('</script>');
	
}

function CreateFlashControl(objectID, sSrc, nWidth, nHeight, addText)
{
	var obj = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"  id="'+objectID+'" width="'+nWidth+'" height="'+nHeight+'">\n';
	obj += '<param name="movie" value="'+sSrc+'" />';
	obj += '<param name="quality" value="high" />';
	obj += '<embed src="'+sSrc+'" width="'+nWidth+'" height="'+nHeight+'" ' + addText + ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
	obj += '</object>';
	
	document.write(obj);
}
