function popup(type,page) {
	
	switch(type) {
		case "gallery":
			URL = "galleries/"+page+".html";
			winHeight = 500;
			winWidth = 450;
			winToolbar = "no";
			winMenubar = "no";
			winScrollbars = "no";
			winResizable = "no";
			winStatus = "no";
			break;
	}
	
	newWindow = window.open(URL,"AOD"+type,"height="+winHeight+",width="+winWidth+",toolbar="+winToolbar+",menubar="+winMenubar+",scrollbars="+winScrollbars+",resizable="+winResizable+",status="+winStatus)

}

