function upm_pop_img(src, w, h, name, title) { ww = w ; wh = h; if (ww < 175) { ww = 175; } if (wh < 100) { wh = 100; } if (!title) { title = name; } t = (screen.height) ? (screen.height - wh) / 2 : 0; l = (screen.width) ? (screen.width - ww) / 2 : 0; var upm_pop_win = window.open('', 'upm_pop_win', 'top='+t+', left='+l+', width='+ww+', height='+wh+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, copyhistory=no, resizable=yes'); upm_pop_win.document.open(); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''+title+''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln('
'); upm_pop_win.document.writeln(''); upm_pop_win.document.writeln('
'); upm_pop_win.document.writeln(''); upm_pop_win.document.write(''); upm_pop_win.document.close(); upm_pop_win.focus(); return false; }