function popUp(pcStrName, pcStrSection, pcIntWidth, pcIntHeight) {
	var lvIntWidth = pcIntWidth + 20;
	var lvIntHeight = pcIntHeight + 30;
	var lvStrFolder = "";
	if(pcStrSection=="history") {
		lvStrFolder="Images/history/popups/";
	} 
	else if(pcStrSection=="gallery") {
		lvStrFolder="Images/gallery/";
	}
	Photo = window.open(lvStrFolder+pcStrName+".jpg", "Photos", "location=no, scrollbar=no, menubar=no, resizable=no, status=no, toolbar=no, width="+lvIntWidth+", height="+lvIntHeight+",left=100, top=100");
}