var last=null;
function change_table(inTab){
	var color;
	var tab=new Array("five", "four", "three", "two", "one");
	var clr=new Array("#0066CC", "#101554", "#0B187B", "#7376AE", "#FF9706");
	for(i=0; i<tab.length; i++)
		{
		if(inTab==tab[i])
			{
			
			color=clr[i];
			}
		}
	if(last)
		{
		last.style.borderBottom='solid 1px #FFFFFF';
		}
	//document.getElementById('tab'+inTab).style.borderBottom='solid 1px '+color; // carka pod zalozkou
	//document.getElementById('lowbar').style.backgroundColor=color; // zmena barvy radku s navigaci
	last=document.getElementById('tab'+inTab);
	var label='H-'+inTab; // zobrazeni navigace
	document.getElementById('lowbar').innerHTML=document.getElementById(label).innerHTML;
}

function open_win(file2){
		//******************
		largh=776;
	    altez=500;
	    windowW=(screen.availWidth-largh)/2;
	    windowH=(screen.availHeight-altez)/2;
	    stringa="scrollbars=1, resizable=1, width="+largh+", height="+altez+", left="+windowW+",top="+windowH;
	    finestrb=window.open(file2,"detailspec",stringa);
	    finestrb.focus();
}
	function OpWin(file2){
		//******************
		largh=500;
	    altez=500;
	    windowW=(screen.availWidth-largh)/3.5;
	    windowH=(screen.availHeight-altez)/1.8;
	    stringa="scrollbars=1, resizable=1, width="+largh+", height="+altez+", left="+windowW+",top="+windowH;
	    finestrb=window.open(file2,"detailspec",stringa);
	    finestrb.focus();
		}
