function openPic(image, n, w, h) { //openPic()
	var picwin = open("","picwin","width=" + w + ",height=" + h);
	picwin.document.open();
	picwin.document.write(
		"<html><head><title>" + n + "</title></head>" +
		"<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>" +
		"<a href='javascript:self.close()'><img src='" + image + "' width='" + w + "' height='" + h + "' border='0'></a>" +
		"</body></html>"
	);
	picwin.document.close();
	picwin.focus();
} //openPic()

function openWin(thePage, attrib) { //openWin()
  var pplWindow = open(thePage,"pplWindow",attrib);
  pplWindow.focus();
} //openWin()