function videoplayer(link)
{
 document.write('<embed id="MediaPlayer" type="application/x-mplayer2" width=460 height=345  pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + link + '" name="MediaPlayer" showstatusbar="0" EnableContextMenu="0" showcontrols="1" autoplay="true" loop="true">');
}

function videocode(artist, song, page, link)
{
 document.write('<textarea name="videotextarea" rows="5" cols="55"><style>.hov{background-color:#efeffa}:hover{background-color:#e1e1f4}</style><div id="Title" style="font:bold 11px verdana"><a class="hov" style="display:block;width:350px;border:solid 2px #3d3fa0;padding:5px" href="' + page + '" target="_blank">' + artist + ' - ' + song + '<p><embed name="RAOCXplayer" src="' + link + '" type="application/x-mplayer2" width="350" height="300" autoplay="true" ShowControls="1" ShowStatusBar="0" loop="true" EnableContextMenu="0" DisplaySize="0" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"></embed></a><p style="margin:3px 0px"><div align=center><a href="http://www.placevideo.com" target="_blank">Video Code provided by PlaceVideo.com</a><br><a href="http://www.oldielyrics.com" target="_blank">See Lyrics @ OldieLyrics.com</a></p></div></textarea><br><br>');
 document.write('<input type="submit" value="Test in new window" onclick="testvideocode()">     <input type="submit" value="Copy to clipboard" onclick="copytoclipboard()">');
// document.write('<script>reportnotworking("'+artist+'", "'+song+'", "'+page+'", "'+link+'")</script>');
}

function testvideocode()
{
 settings="toolbar=no,location=no,directories=yes,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=400";
// settings="";
 testwin=window.open("","",settings);
 testwin.document.open();
 testwin.document.write("<body bgcolor=#efeffa>");
 testwin.document.write("");
 testwin.document.write("<div align=center>" + videotextarea.value);
 testwin.document.write("");
 testwin.document.close();
}

function copytoclipboard()
{
  window.clipboardData.setData('Text', videotextarea.value);
}

function reportnotworking(artist, song, page, link)
{        
 document.write('<form name="notworking" method="post" action="">');
 document.write('<input type="submit" name="submit" value="Report not working">');
 document.write('<input type="hidden" name="artist" value=artist>');
 document.write('<input type="hidden" name="song" value=song>');
 document.write('<input type="hidden" name="page" value=page>');
 document.write('<input type="hidden" name="link" value=link>');
 document.write('</form>');
}

function insertintomyspace()
{
 document.write('To add this video directly into your MySpace profile: 1) log into MySpace; 2) select profile section; 3) press "Add to MySpace" button. If you have something in the selected section already, it will be replaced with this video.');

 document.write('<form name="myspace" method="post" action="http://www.myspace.com/index.cfm?fuseaction=profile.previewsafemode">');
  document.write('<input type="hidden" name="interest" value=videotextarea.value>');
  document.write('<select name="interestLabel">');
   document.write('<option value="music">Music</option><option value="general">General</option><option value="movies">Movies</option><option value="television">Television</option><option value="books">Books</option><option value="heroes">Heroes</option>');
  document.write('</select>&nbsp;<input type="submit" value="Add to MySpace">');
 document.write('</form>');
}
