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.
      document.writeln('<a href=' + URL + ' rel="lightbox[480 380]">Play Media</a>');
   }
}

