function openpopup(url) {
    popup=window.open(url,"popup","width=200,height=200,top=0,left=0,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
    return false;
}

function openPopupGallery(url) {
    var windowTop = 50;
    var windowLeft = 50;
    w = 600;
    h = 600;
    var Options = "width=" + w + ",height=" + h + ",top=" + windowTop + ",left=" + windowLeft + ",resizable=no,scrollbars=no"
    var imageWindow = window.open (url, "imageWin", Options);
    imageWindow.document.close ();
    if (window.focus) imageWindow.focus();
    //return false;
}

function showArchForm(a) {
    var frm = document.getElementById('newsarcform');
    var div = document.getElementById('paginator');

    if (frm && (typeof(frm) != 'undefined')) {
        frm.style.display = 'block';
        a.style.display = 'none';
    }

    if (div && (typeof(div) != 'undefined')) {
        div.style.display = 'block';
    }
}

