function showPic(pic, label, x, y)
	{
	var xtop = (screen.height-390)/2, xleft = (screen.width-258)/2;	
	
	msg = "<html><head><TITLE>"+label+"</TITLE></head>";
	msg += "<BODY BGCOLOR=#ffffff style='margin: 0; padding: 0'><img src='" + pic +"'></BODY></html>";
	popup = window.open("","popDialog","height="+y+",width="+x+",top="+xtop+",left="+xleft+",scrollbars=no,toolbar=no,resizable=no");
	popup.document.write(msg)
	}	
