
//this code required for to display flash or static image if no flash player detected ks
function displayBody(fmovie, fwidth, fheight, imageLang)
{
  var specificlang = imageLang
  
  if ( IsFlashDetect() )
  {
    var movie = fmovie;
    var width = fwidth;
    var height = fheight;
   
    document.write(
      "<td valign=\"top\">" +
      "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='" + width + "' height='" + height + "'>" +
      "  <param name='movie' value='images/" + movie + "'>" +
      "  <param name='quality' value='high'>" +
      "  <param name='menu' value='false'>" +
      "  <embed src='images/" + movie + "' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed>" +
      "</object>" +
      "</td>\n"
    );
  }
  else
  {
    getNonFlashPage(specificlang);
  }
}

function getNonFlashPage(slang)
{
  var slang = slang;
   
  window.location = 'default-' + slang + '.asp?flash=no' ;

}
//-->