function pftchange()
{
    $("#pftable").html(
        '<div id="loading"><img src="/img/loading.gif" '
        + 'width="32" height="32" alt="" /></div>');
    var order = $("#orderby").val();
    $.cookie('orderby', order, { expires:30 });
    $.get("/order.php", { orderby:order, r:Math.random() },
          function(data){ $("#pftable").html(data) }, "html");
}

function openAs()
{
    var w = screen.availWidth;
    var h = screen.availHeight;
    var attr = 'top=0,left=0,toolbar=no,location=no,directories=no,status=no,'
        + 'menubar=no,resizable=no,scrollbars=no';
    attr += ",width=" + w + ",height=" + h;
    var swin = window.open("index.php?mode=autoslide", "autoslide", attr);
    if (document.all) {
        swin.resizeTo(w, h);
    } else {
        swin.availWidth = w;
        swin.availHeight = h;
    }
    swin.window.focus();
    return false;
}

$(function(){
    $("a[rel=external]").attr("target", "_blank");
});
