
	function findDOM(objectId) {
	if (document.getElementById) {
	return (document.getElementById(objectId));}
	if (document.all) {
	return (document.all[objectId]);}
	}
	function check_sizeimg(imgx) {
	imgd = findDOM(imgx);

	if (imgd.width>200) {
		imgd.width = 200; }
	if (imgd.height>200) {
		imgd.height = 200; }	
	
}

			function PopupPic(sPicURL) { 
				window.open("zoom.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
			}



