
function writeFlash(path, width, height){
document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+width+'" height="'+height+'">');
document.write('<param name="movie" value="'+path+'">');
document.write('<param name="quality" value="High">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="'+path+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'" quality="High"></object>');
}

function writeInnerFlash(id,path, width, height){
newhtml='<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+width+'" height="'+height+'">';
newhtml+='<param name="movie" value="'+path+'">';
newhtml+='<param name="quality" value="High">';
document.write('<param name="wmode" value="transparent">');
newhtml+='<embed src="'+path+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" quality="High"></object>';
document.getElementById(id).innerHTML=newhtml;
}

/*
function writeFlash(path, width, height){
document.write('<object type="application/x-shockwave-flash" data="'+path+'" width="'+width+'" height="'+height+'">');
document.write('<param name="movie" value="'+path+'" /><param name="wmode" value="transparent" /><param name="quality" value="high" /></object>');
}
function writeInnerFlash(id,path, width, height){
newhtml='<object type="application/x-shockwave-flash" data="'+path+'" width="'+width+'" height="'+height+'">';
newhtml+='<param name="movie" value="'+path+'" /><param name="quality" value="high" /></object>';
document.getElementById(id).innerHTML=newhtml;
}
*/