function s2398s(url, width, height, title)
{
     winwidth=width+25;
     winheight=height+15;
        var pageWidth = 480;
        var pageHeight = 340;
        if (document.body && document.body.clientWidth) {
                pageWidth = document.body.clientWidth;
                pageHeight = document.body.clientHeight;
        } else if (window.innerWidth) {
                pageWidth = window.innerWidth;
                pageHeight = window.innerHeight;
        }
        var topPos = 18;
        var leftPos = (pageWidth - winwidth) / 2;
        var features = 'width='+winwidth;
        features += ',height='+winheight;
        features += ',top='+topPos;
        features += ',left='+leftPos;
     features += 'resizeable';

        newWindow = window.open("", "s2398s", features);
        newWindow.document.open();
        newWindow.document.write('<html><title>'+title+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
        newWindow.document.write('<table width="700" height="505" border="0" cellspacing="0" cellpadding="10" align="center"><tr><td><img src="image02/5d5_2398.jpg" width="364" height="450" alt="5d5_2398.jpg"></td><td><img src="image02/5d5_2430.jpg" width="313" height="500" alt="5d5_2430.jpg"></td></tr></table>');
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
}


