function viewPic(url, title) {
if (url == '') return false;
win = window.open(url, 'image', 'width=10, height=10, toolbar=0, statusbar=0, location=0, scrollbars=0, resizable=0');
win.document.open();
win.document.write('
'+title+'');
win.document.write('
');
win.document.write('');
win.document.close();
}
function viewURL(url, width, height, scroll) {
if (url == '') return false;
if (width == null) width = 640;
if (height == null) height = 480;
if (scroll == null) scroll = 0;
win = window.open(url, '', 'width='+width+', height='+height+', toolbar=0, statusbar=0, location=0, scrollbars='+scroll+', resizable=1');
win.moveTo((screen.width-width)/2, (screen.height-height)/2);
}