if (document.images)
    {
    closeon = new Image();
    closeon.src = "http://www.fpdct.org/images/closeon.gif";
    printon = new Image();
    printon.src = "http://www.fpdct.org/images/printon.gif";

    closeoff = new Image();
    closeoff.src = "http://www.fpdct.org/images/close.gif";
    printoff = new Image();
    printoff.src = "http://www.fpdct.org/images/print.gif";
}
function imgOn(imgName)
    {
    if (document.images) 
        {
        document[imgName].src = eval(imgName + "on.src");
        }
}
function imgOff(imgName)
    {
    if (document.images)
        {
        document[imgName].src = eval(imgName + "off.src");
        }
}
function newSearch(){
    window.history.back();
    window.location.href = "http://www.fpdct.org/slipop/case_summaries.html";
}
function printRecord(record){
    var url = "http://www.fpdct.org/cgi-bin/so_search.pl?key=";
    url += record;
    url += "&searchType=print";
    newWindow = window.open(url,"recordWin","scrollbars,screenX=250,screenY=115,HEIGHT=500,WIDTH=550");
}
