var win = null;
function NewWindow(winname, w, h, link, title){
settings = 'height=' + h + ',innerHeight=' + h + ',width=' + w + ',innerWidth=' + w + ',screenX=100,left=100,screenY=100,top=100,scrollbars=no,resizable=yes,menubar=no,toolbar=no';
win = window.open("", winname, settings);
win.focus();
win.document.open();
win.document.write('<html><head><title>' + title + '<\/title><\/head><body><div align="center"><img src=' + link + '><\/div><form><div align="center"><input type="button" name="B1" value="Close Window" align="center" onclick="window.close()"><\/div><\/form><\/body><\/html>');
win.document.close();
}
