//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 strony w nowym oknie
function new_win(link, width, height) {
var link;
var width;
var height;
window.open('window.php'+link+'', 'noweokno' ,'left=20,top=0, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//sprawdzenie czy login istnieje
function check_login()
{
	var p_log = document.formularz.elements['p_login'].value;
	window.open('window.php?page=register&run=check&p_login='+p_log+'', 'noweokno' ,'left=20,top=20, width=400 , height=400, menubar=0, resizable=1, scrollbars=1');
}

//zaznacza checkboxa od dat w wyszukiwarce
function wg_daty()
{
	document.formularz.elements['wgd'].checked=true;
}

//schowaj-ukryj element
function show_hide()
{
	var p = document.getElementById('im');

	if (p.style.display=="none")
	{
	document.formularz.btn.value = "Proste wyszukiwanie";
	p.style.display = "block";
	}
	else
	{
	p.style.display = "none";
	document.formularz.btn.value = "Zaawansowane wyszukiwanie";
	}

}
//podswietla cały wiersz w tabeli po kliknięciu
function highlight(hd,kolorek1,kolorek2)
{
	hd.on ^= 1; hd.bgColor = hd.on ? kolorek1 : kolorek2
}

function open_back(link)
{
	var link;
	opener.window.location.href=""+ link;
	window.close();
}
