<!--
// new window
function OpenWindow(strURL,width,height,sroll){
	var objWnd = window.open(strURL,"Detail","scrollbars=" + sroll + ",resizable=yes,height=" + height + ",width=" + width + ",left=0,top=0");
	objWnd.focus();
}

// otevreni noveho okna
function NewWindow(strURL){
	var objWnd = window.open(strURL);
	objWnd.focus();
}

// otevreni noveho okna
function NewWindow2(url){
	document.write('<a onclick="window.open(this.href,\'_blank\');return false;" href="' + url + '" title="Stránka se otevře v novém okně."><img src="http://www.litnem.cz/images/basic/newwin.gif" width="16" height="13" alt="Stránka se otevře v novém okně." /></a>');
}
//-->
