// 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=500,height=600');
	newWindow.focus();
}