function quick_search(e) {
	var el = $(e);
	if (el.value=='') {
		dialogWarning('Wpisz szukaną frazę !');
		return;
	}
	var s = search_url.replace('--search--',encodeURIComponent(el.value));
	document.location.href = s;
}

function addComment() {
	$('add_comment').show();
}

function adultContentOK() {
	document.location.href='index.php?a=1';
	return;
	try {
		$('bloody_sheet').hide();
		setCookie('mf_adult_content',1);
	} catch (e) {
		alert(e.message);
	}
}

function adultContentCancel() {
	document.location.href='http://www.linki.pl/';
}

