<!--
function rollOver(imageName,newImageName){
	document[imageName].src = "images/"+newImageName;
}

function oWin(w,h,nam) {
	    specs="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistor=no,width=" + w + ",height=" + h;
        var imgWin = window.open(nam,"imgWindow",specs)
}

function sm_rollover(idName) {
	document.getElementById(idName).style.backgroundImage = "url(images/sm_bg_over.gif)";
}

function sm_rollout(idName) {
	document.getElementById(idName).style.backgroundImage = "url(images/sm_bg.gif)";
}
// -->
