function OpenRef(refer, w, h)
{	
	
	if(navigator.appName=="Microsoft Internet Explorer")
	{
		w += 40;
		h += 30;
		window.open(refer,'zdjecia','directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no,height='+h+',width='+w+'');
	}
	else
	{
		w += 20;
		h += 20;
		window.open(refer,'zdjecia','directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no,height='+h+',width='+w+'');	
	}
}

function sessionCookieTest () {
  if (testSessionCookie())
    alert ("Session coookies are enabled");
  else
    alert ("Session coookies are not enabled");
}

function setSessionCookieTest () {
	var myName = 'coxx';
	var myValue = document.getElementById('fakk').style.backgroundImage;
	writeSessionCookie (myName, myValue);
}
function readCookieTest () {
  var myCookieName = 'coxx';
  if (getCookieValue (myCookieName))
    alert ('The value of the Cookie is "' + getCookieValue (myCookieName) + '"')
  else
    alert ("Cookie not found");
}

function ShowMenu(id, fff){
     ch = document.getElementById(fff);     
     if(ch.style.display == 'block'){
          ch.style.display = 'none';
		  id.style.backgroundImage='url(http://www.barbarabursztynowicz.pl/szablon/img/down.jpg)' ;  
     }else{
          ch.style.display = 'block';
		  id.style.backgroundImage='url(http://www.barbarabursztynowicz.pl/szablon/img/up.jpg)';     
     }
	 
	 if (testSessionCookie()) {
    var myName = document.getElementById('f3CookieName').value;
    var myValue = document.getElementById('f3CookieValue').value;
    writeSessionCookie (myName, myValue);
    alert ("Session cookie written");
  }
  else
    alert ("Sorry - session cookies are currently disabled.");
}