<!--	
//
function init() {
	if (document.getElementsByTagName) {	
		var allCells = document.getElementsByTagName('td');
		for (var i = 0; i < allCells.length; i++) {
			if (allCells.item(i).className == 'nav' || allCells.item(i).className == 'nav-on') {
				var currClass = allCells.item(i).className;
				eval('allCells.item(i).onmouseover = function() { this.className = \'' + currClass + '-s\'; this.style.cursor = \'hand\'; }');
				eval('allCells.item(i).onmouseout = function() { this.className = \'' + currClass + '\' }');
			}
		}		
	}
}
if (!document.layers && navigator.platform.indexOf('Mac')!=-1) { 
	document.write('<style type="text/css">');
	document.write('td.blockContent {padding-top:4px;}');
	document.write('<\/style>');
}
function popUp(url,wnd_name,width,height){
	if (top[wnd_name]!=null && typeof(top[wnd_name])=='object' && !top[wnd_name].closed && top[wnd_name].load_flag==1) {
		if(top[wnd_name].document.location.href!=url) top[wnd_name].document.location.href=url;
		top[wnd_name].focus();
	} else {
		top[wnd_name]=window.open(url,wnd_name,'width='+width+',height='+height+',status=no,menubar=no,resizable=yes,scrollbars=no,left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
	}
}
//-->