function d(e)
{
  document.write(e);
}

var Covers = function()
{
  this.Query = null;
}

Covers.prototype.setQuery = function(query)
{
  this.Query = query;
}

Covers.prototype.showGroup = function()
{
  d('<iframe id="ecs" src="http://cdcovers.to/ecs?q=' + escape(this.Query) + '" frameborder="0" width="100%" height="140" style="border: 1px solid #000000"><a href="http://cdcovers.to/" target="_blank">Search covers at cdcovers.to</a></iframe><br><div style=\"font-family: Arial, Verdana, Helvertica; font-size: 10px\">Powered by <a href="http://cdcovers.to/" target=\"_blank\"><img src="http://cdcovers.to/images/logo-h16.gif" style="border: none; margin-top: 4px"></a></div>');
}

var covers = new Covers();
