/* SCU JavaScript Document:
AUTHORS: Ron Davenport and Christopher Mullins */
<!--
leftPos = 0
 if (screen) 
	{leftPos = screen.width-400}

function newWindow(info) 
       { infoWindow = window.open(info, 'infoWin', 'width=350,height=400,left='+leftPos+',top=50,scrollbars=yes,resizable=yes')
		infoWindow.focus() }

function closeWindow() 
		{ 		
		if (infoWindow && !infoWindow.closed) 
		   {infoWindow.close() }
		}
		
function abcWindow() {
		alphaWindow = window.open('alpha_list.htm', 'alphaWin', 'width=300,height=400,left=350,top=200,scrollbars=yes')
		alphaWindow.focus()
	}

//By George Chiang (www.javascriptkit.com) JavaScript site.
img1=new Image()
img1.src="images/plus.gif"
img2=new Image()
img2.src="images/minus.gif"
ns6_index=0


function change(e){

if(!document.all&&!document.getElementById)
return

if (!document.all&&document.getElementById)
ns6_index=1

var source=document.getElementById&&!document.all? e.target:event.srcElement
if (source.className=="folding"){
var source2=document.getElementById&&!document.all? source.parentNode.childNodes:source.parentElement.all
if (source2[2+ns6_index].style.display=="none"){
source2[0].src="images/minus.gif"
source2[2+ns6_index].style.display=''
}
else{
source2[0].src="images/plus.gif"
source2[2+ns6_index].style.display="none"
}
}
}
document.onclick=change
//-->


