//otwórz stronę
function loaddoc(link) {
var link;
window.location.href=link;
}

//otwarcie zdjęcia w nowym oknie
function new_img(link, width, height) {
var link;
var width;
var height;
window.open('window.php?bimage='+link+'', 'foto' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//otwarcie zdjęcia w nowym oknie
function new_win(link, width, height) {
var link;
var width;
var height;
window.open('window.php'+link+'', 'noweokno' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//do newslettera
function wstaw()
{
	t = document.formularz.mail_podpis.value;
	info = document.formularz.newsletter_info.value;
	document.formularz.mail_podpis.value = info+'\n\n'+t;
	
}

//zwraca kliknięta wartosc w oknie do pola formularza w oknie parent
function ret_link(name,link)
{
	opener.document.formularz.elements[name].value = link;
	window.close();
}

//schowaj reklamę we flash
function zamknij()
{
	var p = document.getElementById('fl');
	p.style.display="none"
}


