pic = 1;
function ShowImage(num, path) {
	if (num != pic) {
		document.images["preview"].src = path+num+".jpg";
		pic = num;
	}
}
