
function showPic(whichpic,x,y) {
	var source = whichpic.getAttribute("href");
	var text = whichpic.getAttribute("title");
	newwin=window.open(source,'newwin','width='+x+',height='+y+',resizable=no,scrollbars=no,status=no,toolbar=no')
	  newwin.document.open();
	  newwin.document.write('<html><head><title>Gallery</title><link rel="stylesheet" href="/css/main.css" type="text/css" media="screen" /></head>');
	  newwin.document.write('<body id=gallpop>');
	  newwin.document.write('<a href="javascript:window.close()"><img src="'+source+'" alt="'+text+'"></a>');
  	newwin.document.write('</body></html>');
	}


	

