// Script for Admin users

function editorPage (element) {
   var URL = "Editor.aspx";
   window.open(URL, 'Editor', 'top=0, left=200, height=650; width= 850, resizable=1, scrollbars=1, menubar=1, status=0, location=1') ;
}

function CloseWindow () {
    window.close();
    return false;
}

function confirmDelete() {
    var response=confirm ("Do you realy want to PERMANENTLY DELETE this page?");
    //alert (response);
    if (response==true) {
        return true;}
    else {
        return false;
    }
}

function confirmDeleteVersion() {
    var response=confirm ("Do you realy want to PERMANENTLY DELETE this version?");
    //alert (response);
    if (response==true) {
        return true;}
    else {
        return false;
    }
}

