//Girls Rock Radio SongRequester Proxy as of 2011.05.01
//Gratefully acknowledging FesterHead's SongRequester code as the source of this service.  Thanks Steve!
function request( songid, samhost, samport )
{
  var window_options = "location=no, status=no, menubar=no, scrollbars=no, resizeable=yes, height=500, width=668";
  var path = "http://216.165.188.82/songrequester/request.php?songid=" + songid + "&samport=" + samport + "&samhost=" + samhost;
  reqwin = window.open(path, "Thanks for requesting a song on GRR!", window_options );
}

