function write2(filename, w, h) {

document.write('<object width="'+w+'" height="'+h+'">');
document.write('<param VALUE=transparent name="movie" value="somefilename.swf">');
document.write('<embed wmode="transparent" src="'+filename+'" width="'+w+'" height="'+h+'">');
document.write('</embed></object>'); 
}
