function embedMyFlash(wi,he,link, realflversion,allowedflver,pcconfiglink)
{

 if(realflversion<allowedflver){
       document.write(pcconfiglink);
   }
 else  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" \
        width="'+wi+'" \
        height="'+he+'" \
        id="game"> \
        <param name="movie" value="'+link+'" /> \
        <param name="quality" value="high" /> \
        <embed src="'+link+'" \
               quality="high" \
               width="'+wi+'" \
               height="'+he+'" \
               name="game" \
               type="application/x-shockwave-flash" /> \
	</object>');
  }
  
function embedMyBanner(wi,he,link, realflversion, allowedflver,pcconfiglink){
   if(realflversion<allowedflver){
       document.write(pcconfiglink);
   }
   else document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" \
        width="'+wi+'" \
        height="'+he+'" \
        id="banner"> \
        <param name="movie" value="'+link+'" /> \
        <param name="quality" value="high" /><param name="wmode" value="transparent" /> \
        <embed src="'+link+'" \
               quality="high" wmode="transparent" \
               width="'+wi+'" \
               height="'+he+'" \
               name="game" \
               type="application/x-shockwave-flash" /> \
	</object>');
  }
function embedMyFlash2(wi,he,link)
{
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" \
        width="'+wi+'" \
        height="'+he+'" \
        id="game"> \
        <param name="movie" value="'+link+'" /> \
        <param name="quality" value="high" /> \
        <embed src="'+link+'" \
               quality="high" \
               width="'+wi+'" \
               height="'+he+'" \
               name="game" \
               type="application/x-shockwave-flash" /> \
	</object>');
  }
