// JavaScript Document

function dropDown_show(menuItem){
	
	document.getElementById(menuItem).style.display = "block";
	
	}
		
function dropDown_hide(menuItem){
	
	document.getElementById(menuItem).style.display = "none";
	
	}
	


function enlarge(img, w, h)
	{
	window.open("popUps/img_enlarge.php?img="+img,"Large_image","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,width="+w+",height="+h+",top=0,left=0");	
	}
	
	function close_window()
		{
			window.close();
		}
