function openPicWindow(pTitle, pWidth, pHeight, pPicUrl) {
	winFeatures = 'width=' + pWidth + ',height=' + pHeight + ',location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes';
	win = window.open('', pTitle, winFeatures);
	win.document.writeln('<html>');
	win.document.writeln('<head><title>Viking Fight - View picture</title><link href="site/style2.css" rel="stylesheet" type="text/css"></head>');
	win.document.writeln('<body><center>');
	win.document.writeln('<table border="0" cellpadding="0" cellspacing="0" class="bordertable">');
	win.document.writeln('<tr><td rowspan="7" class="orangetd"><img src="images/blank.gif" width="1" height="1"></td>');
	win.document.writeln('<td class="orangetd"><img src="images/blank.gif" width="1" height="1"></td>');
	win.document.writeln('<td rowspan="7" class="orangetd"><img src="images/blank.gif" width="1" height="1"></td></tr>');
	win.document.writeln('<tr><td align="center"><img src="' + pPicUrl + '" hspace="10" vspace="10" border="0"></td></tr>');
	win.document.writeln('<tr><td class="orangetd"><img src="images/blank.gif" width="1" height="1"></td></tr>');
    win.document.writeln('<tr><td><img src="images/blank.gif" width="1" height="10"></td></tr>');
    win.document.writeln('<tr><td align="center"><input name="closebutton" type="button" class="inputbutton" value="Close window" onClick="window.close();"></td></tr>');
    win.document.writeln('<tr><td><img src="images/blank.gif" width="1" height="10"></td></tr>');
    win.document.writeln('<tr><td class="orangetd"><img src="images/blank.gif" width="1" height="1"></td></tr>');
    win.document.writeln('</table>');
    win.document.writeln('<div style="color: #585858;">&#169; 2002 by Viking Fight</div>');
	win.document.writeln('</center></body>');
	win.document.write('</html>');
}