<!--

function pagejump(to_url) {
        if (to_url != "") {
        window.location=to_url
        }
}

var detailsWindow;
function showDetails(imageURL)
{
   detailsWindow = window.open(imageURL,"largerImage","width=560,height=430,scrollbars=no,resizable=yes,left=232,top=170,status=yes,location=no");
   detailsWindow.focus();
   return false;
}
// -->
