function dodaj() {

    var tytul = 'Develop - o ogrzewaniu wiemy prawie wszystko...';
    var adres = 'http://www.develop.pl';
 
    //FireFox
    if (window.sidebar) { 

        window.sidebar.addPanel(tytul, adres, ""); 

    //IE
    } else if (window.external) {

        window.external.AddFavorite(adres, tytul); 

    //Opera
    } else if (window.opera && window.print) {

        var a = document.createElement('a');
        a.setAttribute('href', adres);
        a.setAttribute('title', tytul);
        a.setAttribute('rel','sidebar');
        a.click();
    }
}
function sendForm()
	{
	var pole1 = document.getElementById('imie').value;
	var pole2 = document.getElementById('email').value;
	var pole3 = document.getElementById('tresc').value;
	var pole4 = document.getElementById('temat').value;
	if ((pole1 == '') || (pole2 == '') || (pole3 == '') || (pole4 == '')) 
		{alert('Pola oznaczone * nie mog± byæ puste.');}
	else
		{document.getElementById('contactF').submit();}
	}

