function popuponclick(pImage,pWidth,pHeight)
{
	attributes = 'width='+ pWidth + ',height=' +pHeight;
	newwindow2=window.open('','window',''+attributes)
	var popwin = newwindow2.document;
	popwin.write('<html><head><title>[' + pImage + '] - Click To Close</title>');
	popwin.write('<link rel="stylesheet" href="js.css">');
	popwin.write('</head><body bgcolor=#A4A4A4 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
	popwin.write('<a href="javascript:self.close()"><img src=http://www.svartberg.com/gallery/pic/' + pImage + ' border="0" height=' + pHeight + ' width=' + pWidth + '></a>');
	popwin.write('</body></html>');
	popwin.close();
}