additional =  function(){
	this.SelectLinkName = function(ElementId){
		
		this.G(ElementId).style.color = '#990000';
	}	
	this.G = function(ElementId){
		item1 = document.getElementById(ElementId);
		return item1;
	}
	
	this.treelevel = function(n){
	if (this.G(n).style.display=='block'){
	this.G(n).style.display='none';	  	
	}
	else {
	this.G(n).style.display='block';
	}
	}
	//this.AS = function(){alert('eeded');}
}
AdditionalJS = new additional;
//AdditionalJS.SelectLinkName(12);



function preview(id){
address="/index.php/wbn/article/"+id;
myWin= open(address, "displayWindow",
   "scrollbars=yes,width=648,height=478,status=no,toolbar=no,menubar=no;");
}