function eventsServices(){
	var o_content_left_collumn = document.getElementById('left_collumn');
	var o_current_open_div;
	o_content_left_collumn.onclick = function(e){
		if (!e) e = window.event;
		var elem = e.target || e.srcElement;
		if(elem.tagName=='A'){
			var id='c'+elem.id;
			var div=document.getElementById(id);
			if((div)&&(div.style.display!='block')){ 
				if(o_current_open_div) o_current_open_div.style.display='none';
				div.style.display='block';
				o_current_open_div=div;
				return;
			}
			if((div)&&(div.style.display=='block')){ 
				if(o_current_open_div) o_current_open_div.style.display='none';
				div.style.display='none';
			}
			div.focus();
		}
	}
}


function openWindNew(url,w,h)
{
options="directories=0, location=0, width="+w+", height="+h+", menubar=0, status=0, top=40, left=200, scrollbars=0";
newWindow=open(url,"NEW",options);
newWindow.focus();
}

function closeWind()
{
window.close;
}
