function EmbedMedia(URL){
   if(URL == null || URL == "illegal"){
      //Nope, we can't.
      document.writeln("&nbsp;error: illegal use of Media tag!&nbsp;");
   }else{
      //Add the code to the document. The first line below will put all media in page in a group.  The second will display them individually.  To change, uncomment one and comment the other with //.
      document.writeln('<a href=' + URL + ' rel="lightbox[group]"><img border="0" src="./media/images/icon_mediaclickblack.png" alt="Click to View Media" title="Click to View Media"></a>');
      //document.writeln('<a href=' + URL + ' rel="lightbox"><img border="0" src="./media/images/icon_mediaclickblack.png" alt="Click to View Media" title="Click to View Media"></a>');
   }
}

