<br />
<b>Warning</b>:  Unknown: open_basedir restriction in effect. File(/home/dohy/www/access-logs/dohy.net_error_log) is not within the allowed path(s): (/home/dohy:/usr/lib/php:/usr/local/lib/php:/tmp) in <b>Unknown</b> on line <b>0</b><br />
function tab_display(id) {
	len = tab_config.length;
	for(var i= 0; i < len; i++) {
		var el = document.getElementById('tab'+tab_config[i]['id']+'header');	
		if(tab_config[i]['id']==id) {
			el.className = 'selected';	
		} else {
			el.className = '';	
		}
		
		var el = document.getElementById('tab'+tab_config[i]['id']+'content');	
		if(tab_config[i]['id']==id) {
			el.style.display = 'block';	
		} else {
			el.style.display = 'none';	
		}		
	}
}
