//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=5,top=5, 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;
	
}

//schowaj reklame na glownej stronie
function zamknij()
{
	var p = document.getElementById('fl');
	p.style.display="none"
}

//pokazuje ile liter zostało (znaki_id) w polu textarea (pole_id)
function litery(pole_id,znaki_id)
{
	maxlen = 160;
	var u = document.getElementById(pole_id).value;
	var l = u.length;
	var z = document.getElementById(znaki_id);
	var p = maxlen-l;
	if (p<0) p=0;
	z.innerHTML = "Pozostało znaków: " +p;

	if (p==0) //obcinaj jak za duzo
	document.getElementById(pole_id).value = u.substring(0,maxlen);
}
