theObjects = document.getElementsByTagName("object");

for (var i = 0; i < theObjects.length; i++) {

theObjects[i].outerHTML = theObjects[i].outerHTML;

}

theObjects = document.getElementsByTagName("embed");

for (var i = 0; i < theObjects.length; i++) {

theObjects[i].outerHTML = theObjects[i].outerHTML;

}

function swf(url,w,h,m,t) {
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">');
	document.writeln('<param name="movie" value="swf/'+url+'.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="'+m+'" value="'+t+'">');
	document.writeln('<embed wmode="'+t+'" src="swf/'+url+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed>');
	document.writeln('</object>');
}
function player(url,w,h,vars) {
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">');
	document.writeln('<param name="movie" value="swf/'+url+'.swf">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<param name="flashvars" value="jingle='+vars+'">');
	document.writeln('<embed src="swf/'+url+'.swf" wmode="transparent" flashvars="jingle='+vars+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed>');
	document.writeln('</object>');
}