
<!--
function hov(loc,cls){
   		if(loc.className) {
      	loc.className=cls;
		}
}

function NewWindow(mypage, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	//w = 315
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes'
	win = window.open(mypage, 'certifications', winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//-->
