
var rtn = '<ads>';

$(document).ready(function()
{
    $("#as").find("a").each(function(i)
    {
        rtn +=  '<item id="' + i + '" filename="' + $(this).children("img").attr("src") + '" url="' + this.href  + '" />';
    });

    rtn += '</ads>';

});


function getAds()
{

    return rtn;

}

function pop($url)
{
    var w;
    var h;
    w = (window.screen.width/2) - (350);
    h = (window.screen.height/2) - (200);
    var win2 = window.open($url,"player","status=no,height=400,width=700,resizable=no,left=" + w + ",top=" + h + ",screenX=" + w + ",screenY=" + h + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
    win2.focus();
}

function credits()
{
    var w;
    var h;
    w = (window.screen.width/2) - (350);
    h = (window.screen.height/2) - (200);
    var win2 = window.open('credits.html',"credits","status=no,height=300,width=500,resizable=no,left=" + w + ",top=" + h + ",screenX=" + w + ",screenY=" + h + ",toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no");
    win2.focus();
}
