// Last modification time = 2006-12-06 22:55

var COOKIE_DOMAIN = ".todlaciebie.pl";


// Last modification time = 2006-07-25 20:36
function setCookie(name, value, expires, path, domain, secure) 
{
	var exdate = new Date();
	exdate.setDate(expires);	
  	var curCookie = name + "=" + escape(value) +
		((expires) ? "; expires=" + exdate : "") +
      	((path) ? "; path=" + path : "") +
      	((domain) ? "; domain=" + domain : "") +
      	((secure) ? "; secure" : "");
  	document.cookie = curCookie;
}


// Last modification time = 2006-07-29 20:07
function sortujWedlugCeny()
{
	setCookie("sort_ideas_by", "price", 365, "/", COOKIE_DOMAIN);
	location.reload();
}


// Last modification time = 2006-07-29 20:07
function sortujWedlugPopularnosci()
{
	setCookie("sort_ideas_by", "popularity", 365, "/", COOKIE_DOMAIN);
	location.reload();
}


// Last modification time = 2006-12-06 22:08
function sortujLosowo()
{
	setCookie("sort_ideas_by", "randomly", 365, "/", COOKIE_DOMAIN);
	location.reload();
}


// Last modification time = 2006-08-16 20:45
function resetChoices()
{
	for (var i = 0; i < 6; ++i) 
	{ 
		search_form.elements[i].selectedIndex = 0;
	}
}


// Last modification time = 2006-08-25 14:07
function confirmation(message, url)
{
	if (confirm(message))
	{
		document.location = url;
	}
}
