// JavaScript Document
var popUpWin=0;
function popUpImage(w,h,name,desc){
	if(popUpWin) {
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = window.open('', 'showPhoto','status="0",width='+(w+20)+',height='+(h+20));
	popUpWin.document.write('<html>\n');
	popUpWin.document.write('<head>\n');
	popUpWin.document.write('<title>',desc,'</title>\n');
	popUpWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">\n');
	popUpWin.document.write('</head>\n');
	popUpWin.document.write('<body bgcolor="#FFFFFF" leftmargin="10" rightmargin="10" topmargin="10" bottommargin="10">\n');
	popUpWin.document.write('<a href="javascript:window.close();" title="',desc,'"><img src="',name,'" width="',w,'" alt="',desc,'" border="0"></a>\n');
	popUpWin.document.write('</body>\n');
	popUpWin.document.write('</html>\n');
	popUpWin.document.close();
}
