// Rolloversfunction cOver(id){	document.getElementById(id).className = "selected";}function cOut(id){	document.getElementById(id).className = "";}// Pop Up Windowfunction popUp(url) {	newWindow = window.open(url,'detail','scrollbars=yes,resizable=yes,width=380,height=575');	newWindow.focus();}