//funkcje do podmiany zdjec
function fon(n){document.images[n].src='grafika/'+n+'.gif';}
function foff(n){document.images[n].src='grafika/'+n+'1.gif';}

function fonMapa(n){document.images['mapa'].src='grafika/mapa/mapa'+n+'.gif';}
function foffMapa(n){document.images['mapa'].src='grafika/mapa/mapa'+n+'.gif';}


function menu1_over(id){
	document.getElementById("11m"+id).style.backgroundColor='#676D36';
	document.getElementById("12m"+id).style.backgroundColor='#676D36';	
}

function menu1_out(id){
	document.getElementById("11m"+id).style.backgroundColor='#8A9249';
	document.getElementById("12m"+id).style.backgroundColor='#8A9249';	
}

function menu2_over(id){
	document.getElementById("21m"+id).style.backgroundColor='#7B827B';
	document.getElementById("22m"+id).style.backgroundColor='#7B827B';
}

function menu2_out(id){
	document.getElementById("21m"+id).style.backgroundColor='#949694';
	document.getElementById("22m"+id).style.backgroundColor='#949694';	
}

function menu3_over(id){
	//document.getElementById(id).style.backgroundImage='url(grafika/str3.gif)';
	document.images[id].src="grafika/str3.gif";
}

function menu3_out(id){
	//document.getElementById(id).style.backgroundImage='url(grafika/str3_none.gif)';
		document.images[id].src="grafika/str3_none.gif";
}

//funkcja do wyswietlania popupu
var okno='';
function popup(wi,he,uerel,alignx,aligny,scrol)
{
	if(okno &&!okno.closed){okno.close()}
	if(wi=='100%'){wi=screen.availWidth-30}
	if(he=='100%'){he=screen.availHeight-0}
	if(alignx=='left'){xx=0}
	else if(alignx=='right'){xx=(screen.availWidth-wi)-10}
	else{xx=(screen.availWidth-wi)/2}
	if(aligny=='top'){yy=0}
	else if(aligny=='bottom'){yy=(screen.availHeight-he)}
	else{yy=(screen.availHeight-he)/2}
    
	okno=window.open(uerel, '_blank', 'scrollbars='+scrol+',height='+he+',width='+wi+',top='+yy+',left='+xx);
}

//ladowanie do casch-u zdjec

foto=new Array('str3');
menuA=new Array();menuB=new Array();
for(n=0;n<foto.length;n++){
	menuA[n]=new Image();
	menuA[n].src='grafika/'+foto[n]+'.gif';
	menuB[n]=new Image();
	menuB[n].src='grafika/'+foto[n]+'_none.gif';
}

fotoM=new Array('mapa4','mapa5','mapa6','mapa7');
menuM=new Array();
for(n=0;n<fotoM.length;n++){
	menuM[n]=new Image();
	menuM[n].src='grafika/mapa/'+fotoM[n]+'.gif';
}


function show(co,wi,he)
{
	wii=wi+40
	hee=he+20
	if(screen.availHeight-50<hee){hee=screen.availHeight-50}
	if(screen.availWidth<wii){wii=screen.availWidth-30;hee+=10}
	if(okno &&!okno.closed){okno.close()}
	xx=(screen.availHeight-hee)/2-10;
	yy=(screen.availWidth-wii)/2;
	okno=window.open('about:blank','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,fullscreen=no,channelmode=no,height='+hee+',width='+wii+',top='+xx+',left='+yy);
	okno.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><HTML><HEAD>');
	okno.document.write('<META CONTENT="text/html; charset=iso-8859-2" HTTP-EQUIV=Content-Type>');
	okno.document.write('<META NAME="Author" CONTENT="www.venti.com.pl">');
	okno.document.write('<TITLE>Spectus</TITLE></HEAD>');
	okno.document.write('<BODY bgcolor="#F8F8F8" bottommargin="0" leftmargin="0" rightmargin="0" topmargin="0">');
	okno.document.write('<TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">');
	okno.document.write('<tr><td align="center" valign="middle" style="padding:5 10 5 10">');
	okno.document.write('<a onfocus="blur()" href="javascript:self.close()"><img src="'+co+'" width="'+wi+'" height="'+he+'" style="border-width:1px;border-color:#D6D6D6;border-style:solid"></a>');
	okno.document.write('</td></tr></TABLE></BODY></HTML>');
}


