function showFlashContent(docName, p_width, p_height) {
   var myQueryString=document.location.search;
   // remove the '?' sign if exists
   if (myQueryString[0]='?') {
      myQueryString=myQueryString.substr(1, myQueryString.length-1);
   }
   document.write(
      '<object type="application/x-shockwave-flash" data="'+docName+'" width="'+p_width+'" height="'+p_height+'">\n'+
      '   <param name="movie" value="'+docName+'" />\n'+
      '   <param name="allowFullScreen" value="true" />\n'+
      '   <param name="salign" value="lt" />\n'+
      '</object>');
}