
function hideDiv(id) {
	document.getElementById(id).style.display="none";
}
function showDiv(id) {
	document.getElementById(id).style.display="block";
}
function checkFields() {
	
	f = document.getElementById('mail');
	if (f['name'].value == '' || f['url'].value == '' || f['info'].value == '' ) {
		alert('Будь-ласка, заповніть всі поля форми');
		return false;
	}
	return true;
	
}

 function addToFavorites( url, title ) {
    	if (window.sidebar) { // Mozilla Firefox Bookmark
    		window.sidebar.addPanel(title, url, "");
    	} else if( window.external ) { // IE Favorite
    		window.external.AddFavorite( url, title); }
    	else if(window.opera && window.print) { // Opera Hotlist
    		return true; 
    	}
    }
    
function checkAll() {
	fmobj = document.forms[0];
 	 
	for (var i=0;i<fmobj.elements.length;i++) {
    var e = fmobj.elements[i];
    if ( (e.name != 'all') && (e.type=='checkbox') && (!e.disabled) ) {
      e.checked = fmobj.all.checked;
    }
  }
}
    
    