code:
1
2
3
4
5
6
7
8
9
10
| function showpopup(fname) {
var spw;
spw = window.open('about:blank', 'Extra Information about', 'height=200, width=400, scrollbars=no');
spw.document.writeln("<html><head><title>PicShow: </title>");
spw.document.writeln("</head><body topmargin=0 leftmargin=0>");
spw.document.writeln("LOL</body></html>");
spw.document.close();
} |