		
//otevreni samostatneho okna + nastaveni focus - z flasove animace
function okno(page, targ, scrol, wid, heig) {
	okenko=window.open(''+ page +'','o'+ targ +'','toolbar=0,location=0,scrollbars='+ scrol+',width='+ wid+',height='+heig+',resizable=1');
	
	verze = parseInt(navigator.appVersion);   
	// zjištění verze prohlížeče 
 	if(verze >= 4) {   
		// pokračovat od verze 4 výše 
  		if (typeof(okenko.document) == "object") okenko.focus();   
		// existuje-li okno, nastaví ho na aktivní 
 	}
}

