﻿// JScript File

function openPopup(parentname){
window.open('popup.aspx?parentname='+parentname,"popup",'height=460,width=780,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes');
return false;    
}

function changeBackground(sNewBG){
    var x = window.document.getElementById("contentwrapper");
    x.style.backgroundImage="URL('"+sNewBG+"')";
}

function displayInBackground(sNewBG){
    changeBackground(sNewBG);
    var x = window.document.getElementById("contentarea");
    x.style.display="none";

    var y = window.document.getElementById("resumereading");
    y.style.display="block";
    
    
}

function resumereading(){
    var x = window.document.getElementById("contentarea");
    x.style.display="block";

    var y = window.document.getElementById("resumereading");
    y.style.display="none";
}