

// Flash Object write
function swfprint(id,title,src,bgcolor,width,height)
{
	document.write('	<object	id="'+id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" align="middle" title="'+title+'">');
	document.write('		<param name="allowScriptAccess" value="sameDomain" />');
	document.write('		<param name="movie" value="'+src+'" />');
	document.write('		<param name="quality" value="high" />');
	document.write('		<param name="bgcolor" value="'+bgcolor+'" />');
	document.write('		<embed name="'+id+'"	type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="sameDomain" src="'+src+'" quality="high" width="'+width+'" height="'+height+'" bgcolor="'+bgcolor+'" align="middle" />');
	document.write('	</object>');
}

// Flash Object write
function tswfprint(id,title,src,bgcolor,width,height)
{
	document.write('	<object	id="'+id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" align="middle" title="'+title+'">');
	document.write('		<param name="allowScriptAccess" value="sameDomain" />');
	document.write('		<param name="movie" value="'+src+'" />');
	document.write('		<param name="quality" value="high" />');
	document.write('		<param name="wmode" value="transparent"/>');
	document.write('		<embed name="'+id+'"	type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="sameDomain" src="'+src+'" quality="high" width="'+width+'" height="'+height+'" wmode="transparent" align="middle" />');
	document.write('	</object>');
}

function runLeftMenuFlash(sMenu, sHeight, sWidth)
{
var sMenu = sMenu;
var sHeight = sHeight;
var sWidth = sWidth;
document.write(' <object classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000 codebase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0 width='+sWidth+'  height='+sHeight+' id=sub_menu align=middle> ');
document.write(' <param name=allowScriptAccess value=sameDomain /> ');
document.write(' <param name=movie value='+sMenu+' /> ');
document.write(' <param name=quality value=high /> ');
document.write(' <param name=wmode value=transparent />');
document.write(' <embed src='+sMenu+' quality=high bgcolor=#ffffff width='+sWidth+' height='+sHeight+' name=sub_menu align=middle allowScriptAccess=sameDomain type=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer /> ');
document.write(' </embed> ');
document.write(' </object>');
}


