// JavaScript Document
function changesection(f){
	document.getElementById('s3').style.display="none";
	//document.getElementById('warn').style.display="none";
	if(document.getElementById('white').style.display != "block") document.getElementById('white').style.display="block";
	for(var a=0; a<6; a++){
		document.getElementById('m'+a).style.color='#000000';
	}
	document.getElementById('m'+f).style.color='#FF0000';
	for(var a=0; a<6; a++){
		document.getElementById('b'+a).style.display="none";
	}
	document.getElementById('b'+f).style.display="block";
	// obrazky
	for(var a=0; a<3; a++){
		if(f == 1) document.getElementById('s'+a).style.display="block";
		else document.getElementById('s'+a).style.display="none";
	}
}
function galery(co){
	// galerie
	document.getElementById('s3').style.display="block";
	document.getElementById('s3').src=co;
}
function win(obr,x,y){
	var okno = window.open('', 'okno', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=yes, width='+x+', height='+y+', top=10, left=10');
	okno.document.open();
	okno.document.writeln('<html>\n<head>\n<title>SKI AREÁL - Horní Podluží - fotogalerie</title>\n<meta HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2">\n</head>\n<body topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0">');
	okno.document.writeln('<img src="'+obr+'" alt="obrázek" onclick="window.close();" title="Zavřít" style="cursor:pointer">');
	okno.document.writeln('</body>\n</html>');
	okno.document.close();
}