$(document).ready(function() {
    if (FlashDetect.versionAtLeast(9)) {
        swfobject.embedSWF(vrootdir+"/swf/swampsterz.swf", "swampsterz", "100%", "900", "9.0.0", "", {fullURL:vrootdir+'/'}, {wmode: "transparent", scale: "noscale"});

        $('body').append('<a id="gamelink" href="#"></a>');
    } else {
        $('#noflashjs').delay(400).fadeIn();
    }
});

function gamePopup(url, title, width, height) {

    $("#gamelink").attr("href", url);
    $("#gamelink").attr("title", title);

    $("#gamelink").colorbox({
        iframe:true,
        innerWidth:width,
        innerHeight:height
    });
    $('#gamelink').trigger('click');
}
