function CloseOpen(clicked, edit)
		   {
			   var edit;
	
				   if (document.getElementById)
				   { // DOM3 = IE5, NS6
					 edit = document.getElementById(edit);
					 //text = document.getElementById(info);
				   } else if (document.all)
				   { // IE 4
					 edit = document.all[info];
					 //text = document.all[info];
				   }
	
			   if (edit.className == 'OptionsView')
				   {
					 // closing
					 edit.className = 'NeviditelneOptions';
				   } else
				   {
					 // opening
					 edit.className = 'OptionsView';
				   }
		   }
