	function loadImg(id, cap) {
	var newCap = ""
		var str = cap
		for(i=0;i<str.length;i++) {
			if(str.substr(i,1)!='\\'){
				newCap = newCap+str.substr(i,1)
			}
		}

		document.getElementById('item-img').innerHTML = '<a href="#" onclick="showImg(\''+id+'\')"><img id="item-thumb" src="thumbs/'+id+'" border="0" width="296" style="padding: 6px;"><\/a>'
		document.getElementById('item-cap').innerHTML = "<b>"+newCap+"<\/b>"
	}
		
	function showImg(id, cap) {
			newWin = window.open('img_viewer.php?id='+id,'imgView','width=790, height=640')
			if (window.focus) {newWin.focus()} 
		}
		
	function showDoc(id) {
		window.open(id,'DocView','width=775,height=590,toolbar=0, location=0,directories=yes,status=yes,menubar=yes,scrollbars=yes, resizable=yes')
	}
	function showLink(id) {
		window.open(id,'DocView','width=850,height=850,toolbar=yes, location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes, resizable=yes')
	}
	function goTo(url) {
		window.location=url
	}
	function showGal(url) {
		window.location=url
	}
	function showEvent(url) {
		window.location=url
	}
	deptDisplay = 'none';
	function showDepts() {
		if(deptDisplay=='block') {
			document.getElementById('pull-down').style.display = 'none'
			deptDisplay = 'none'
		}else{
			document.getElementById('pull-down').style.display = 'block'
			deptDisplay = 'block'
		}
	}
	
	function showContact(id) {
		alert(id)
	}