﻿
function createGallery(path,start,end){
	var i, l=0;
	document.write("<center><a name=\"gallery\"></a>");
	document.write("<table class=\"galleryTitleTable\"><tr><td>");
	document.write("<b>Gallery</b><br>");
	document.write("<i>Click on an image to view in bigger size</i>");
	document.write("</td></tr></table>");
	document.write("<table class=\"galleryTable\"><tr>");
	for (i = start; i<=end; i++){
		document.write("<td>");
		document.write("<a href=\"#gallery\" onclick=\"wndIMG = window.open('"+path+i+".jpg','wndIMG','height=415,width=550,status=no,toolbar=no,menubar=no,location=no,resize=no'); wndIMG.focus();\"><img border=\"0\" src=\""+path+"small"+i+".jpg\"></a>");
		document.write("</td>");
		if (l<2) l++;
		else{
			l=0;
			document.write("</tr><tr>");
		}
	}
	document.write("</tr></table>");
	document.write("</center>");
}
