//<!--
		function show_menu (m) {
				var ct = document.getElementById (m);
				if (ct.className == "no_show") {
					ct.className = "show";
				}
				else {
					ct.className = "no_show";
				}
			}
			
		function open_image (pr_img) {
 			window.open("image.php?img="+pr_img,"CruceaRosieVrancea","height=400,width=500,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no");
		}
//-->