  function openPicture(img_name, img_alt, img_descr, w, h){
  	if (w > screen.Width - 50){ w = screen.Width - 50; } else { w = w; }
	if (h > screen.Height - 85 ){ h = screen.Height - 85;} else { h = h; }
	if(self.pzoom != null && !self.pzoom.closed)
		self.pzoom.close();
	pzoom = window.open("","pzoom","scrollbars=1,left=10,top=10,width=" + w + ",height=" + h);
	image = new Image();
	path = img_name;
	image.src = path;
	ntag = '<html>\n';
	ntag += '<head>\n';
	ntag += '  <title>Picture Zoom</title>\n';
	ntag += '  <link href="../included/style.css" rel="stylesheet" type="text/css">\n';
	ntag += '</head>\n';
	ntag += '<body>\n';
	ntag += '<table border="0" cellpadding="0" cellspacing="0" align="center">\n';
	ntag += '  <tr>\n';
	ntag += '    <td align="center" valign="middle"><img src="' + path + '" border="0" alt="' + img_alt + '" vspace="15" hspace="15"></td>\n';
	ntag += '  </tr>\n';
	ntag += '</table>\n';
	ntag += '</body>\n';
	ntag += '</html>';
	pzoom.document.write(ntag);
  }

