function makePopUp(width, height, filename, caption, photog)
{	
	winWidth = width + 30;
	winHeight = height + 150;
	
	mywindow = window.open ('', "PopUpWindow","menubar=0,location=0,toolbar=0,status=0,scrollbars=0,resizable=0,width=" + winWidth + ",height=" + winHeight);
	
	mywindow.document.writeln("<html><head><title>Betty Belts</title><link rel=\"STYLESHEET\" type=\"text/css\" href=\"style.css\"></head><body bgcolor=\"#E8D9F6\" style=\"margin:10px 0px 0px 0px;\">");
	mywindow.document.writeln("<div align=\"center\">");
	mywindow.document.writeln("<div><a href=\"javascript:self.close();\"><img border=\"0\" src=\"" + filename + "\" width=\"" + width + "\" height=\"" + height + "\" style=\"border:solid 1px #8E57BD;\"></a></div>");
	mywindow.document.writeln("<div style=\"margin-top:5px;\"><span class=\"caption\">" + caption +"</span></div>");
	mywindow.document.writeln("<div style=\"margin-top:5px;\"><span class=\"caption\">Photo: " + photog +"</span></div>");
	mywindow.document.writeln("</div></body></html>");
	
	mywindow.document.close();
	mywindow.focus();
	mywindow.resizeTo(winWidth, winHeight);
	
}
