function writePix() {	for (q=0; q< myPhotoSets.length; q++) {		mySet = eval(myPhotoSets[q]);		document.write("<h1>"+mySet[0]+"</h1>");		document.write("<p>"+mySet[1]+"</p>");			for (w=2; w< mySet.length; w++) {			document.write("<a href='/photos/showPix.htm?"+mySet[w]+"' target='_blank'><img src=/photos/photos_tn/"+mySet[w]+".jpg class='photoIndex' /></a>");//			document.write("<a href=\"#\"  onCLick=\"javascript:parent.document.getElementById('photoLg').src='photos_lg/"+mySet[w]+".jpg'; return false\"><img src=photos_tn/"+mySet[w]+".jpg class=\"photoIndex\" /></a>");		}	}}
