function SpawnDocWin(wUrl) {
  newwindow=window.open('','qp_docs','height=10,width=10');
  if (!newwindow.closed) newwindow.close();
  newwindow=window.open(wUrl,'qp_docs','height=500,width=800,scrollbars,resizable');
  if (!newwindow) alert("A Pop-Up Blocker was detected.  This site will not function properly with a Pop-Up Blocker.\nSee your browser Help file on how to remove the Pop-Up Blocker.");
  newwindow.focus();
  return false;
}

function SubmitRating(ratinginfo) {
    var xmlhttp=false;
    try
    {
        xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
    }

    catch (e)
    {
        try
        {
            xmlhttp = new
            ActiveXObject('Microsoft.XMLHTTP');
        }

        catch (E)
        {
            xmlhttp = false;
        }
    }

    if (!xmlhttp && typeof XMLHttpRequest!='undefined')
    {
        alert(ratinginfo);
        xmlhttp = new XMLHttpRequest();
    } 

     xmlhttp.open("GET", ratinginfo, true);
     xmlhttp.onreadystatechange = function ( ) {

         if ( ajax.readyState == 4 ) {
             document.getElementById('songinfo').innerHTML = xmlhttp.responseText;
         }
     }

return;
}
