
function FlashObject(swfFile, width, height, altcontent, altcontentfull) {
   
   var content = '';
   var content = '<object type="application/x-shockwave-flash" data="'+swfFile+'" width="'+width+'" height="'+height+'"><param name="movie" value="'+swfFile+'" />';
   
   if ( altcontent != '') {
      content = content+'<img src="'+altcontent+'" width="'+width+'" height="'+height+'" alt="" />';
   } else {
      content = content+altcontentfull;
   }
   
   
   content = content+'</object>';

	
	//document.getElementById(element).innerHTML=content;
	document.write(content);
}
