/* admin functionalities */
function DeletePage(ptype, recordid, ptable) {
    if (confirm('Are you sure you would like to continue?')) {
        pagePopup('../admin/body.asp?page='+ptype+'&carryval='+ptable+','+recordid+'&carrytype=delpage')
    }
}
function logout() {
    openhousewindow = window.open('','ohwindow','toolbar=no,scrollbars=yes,width=795,height=500')
    if (openhousewindow.opener == null) {
        openhousewindow.opener = window; 
        openhousewindow.opener.name = "opener";  
    }
    window.openhousewindow.location.href="/admin/logout.asp";
}
/* global */
function buttonOver(button) {
    button.className = 'buttonh';
}
function buttonOut(button) {
    button.className = 'button';
}
function PrintDocument() {
    window.print();
}
/* end global */