function show_id(art_list,art_active) {
	tab = art_list.split(" ");
	for(i in tab) {
		document.getElementById(tab[i]).style.display='none';
		document.getElementById('c_'+tab[i]).className='';
	}
	document.getElementById(art_active).style.display='block';
	document.getElementById('c_'+art_active).className='selected';
}
function newWindow () {
	var hyperlink = document.getElementsByTagName('a');
	for (var i=0; i<hyperlink.length; i++) {
		if (String(hyperlink[i].className).match("openNew")) {
			hyperlink[i].onclick = function () {
				window.open(this.href);
				return false;
			}
		}
	}
}
window.onload = function js() {
	newWindow();
}
