function pubFlashCont(url, id, width, height) { 
   document.write('<object type="application/x-shockwave-flash" data="'+url+'" id="'+id+'" width="'+width+'" height="'+height+'">\n'); 
   document.write('<param name="allowScriptAccess" value="sameDomain">\n'); 
   document.write('<param name="movie" value="'+url+'">\n'); 
   document.write('<param name="swLiveConnect" value="true">\n'); 
   document.write('<param name="wmode" value="transparent">\n'); 
 //  document.write('<embed src="'+url+'" quality="high" wmode="transparent" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="'+id+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n'); 
   document.write('</object>'); 
}

