function popUp(imgpath, height, width, caption) {
	dimensions = "height=" + height + ",width=" + width + "\"";
	img = "<img src=\"" + imgpath + "\"/>";
	pop = window.open('', 'picpop', dimensions);
	pop.document.open();
	pop.document.write("<html><head><title>" + caption + "</title><style type=\"text/css\">body {background: rgb(0,64,192);margin: 0px;padding: 0px;position: relative;}</style></head><body>");
	pop.document.write(img);
	pop.document.write("</body></html>");
	pop.document.close();
}
function newWin(url) {
	window.open(url);
}