function check_adres(x,y)
{
	if( y=="" || y==" " )
		x.value="twój adres e-mail";
}
function otworz_okno (el) {
	window.open(el,'','width=385,height=260');
}

function open_window(co,w,h)
{

	if( screen )
	{
		od_lewej=(screen.width/2)-(w/2);
		od_gory=(screen.height/2)-(h/2);
	}
	else
	{
		od_lewej=50;
		od_gory=50;
	}
	zwiekszona_wysokosc=h+20;
	okno_rys=window.open('','','width='+w+',height='+zwiekszona_wysokosc+',statusbar=no,scrollbars=no,left='+od_lewej+',top='+od_gory+'');		

	
	okno_rys.document.write("<html><body topmargin=0 leftmargin=0 bgcolor=#ffffff onclick=window.close()><center>");
	okno_rys.document.write("<table width=100% height=\""+zwiekszona_wysokosc+"\" cellpadding=0 cellspacing=0 border=0><tr><td valign=top align=center>");
	okno_rys.document.write("<img src="+co+">");
	okno_rys.document.write("</td></tr><tr><td height=20 style=\"background-color:#4E0000; font-size:9px; font-family:verdana; color:#FFFFFF; text-align:right;\">copyright (c) PHU ANWA &nbsp;&nbsp;");
	okno_rys.document.write("</td></tr></table>");
	okno_rys.document.write("</center></body></html>");
};

function show_hide(el) {
	e=window.document.getElementById(el);
	if( e.style.display=="none" ) {
		e.style.display="block";
		return;
	}
	if( e.style.display=="block" ) {
		e.style.display="none";
		return;
	}	
}

function hide_baner() {
	window.document.getElementById('baner').style.display='none';
}
