//*************************************************************//
//pomucka pro target _blank v xhtml strict
//pouziti: vsude
function newWindow(url) {
	windowRef = window.open(url,"nove","");
	wasOpen = false;
	if (typeof(windowRef) == "object"){
		wasOpen = true;
	}
	return wasOpen;
}	

//****************************************************//
//otevreni okna s obrazkem
//pouziti: veskere pripojene obrazky tzv. male fotogalerie
function otevri_okno(obrazek)
{
	var win=window.open("","nazev","width=700,height=600,menubar=no,toolbar=no,scrollbars=yes");
	win.document.write("<html><body bgcolor='white'><head><title>Náhled obrázku</title></head>");
	win.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'><a href='javascript:window.close()'><img src='"+obrazek+"' border='0' alt='Kliknutím na obrázek zavřete okno' /></td></tr></table>");
	win.document.write("</body></html>");
}

function accom_switch() {
   document.getElementById('accom-menu').style.display= 'block'; 
   return true;
}

