<!--//
function ShowDialog(adresa) {

if( dialogWindow != null )
 	HideDialog();
	 dialogWindow=window.open('','obrazek','width=480,height=340,scrollbars=no,status=no,toolbar=no,top=0,left=0;');
	
	 dialogWindow.document.open();
dialogWindow.document.write("<html><head><META HTTP-EQUIV='Content-Type' content='text/html; charset=windows-1250'><title>Statutární město Jihlava - model náměstí</TITLE></head><BODY bgcolor=#f7e7d6 topmargin=2 text=#5a3118 link=#804040 alink=#804040 vlink=#804040><center><br><img src='"+adresa);
dialogWindow.document.write("' width=450 height=297>");
dialogWindow.document.write("<br><a href='javascript:window.close();'><font size=2 face='arial ce,arial'><b>Zavřít okno</b></a><br><br></center></body></html>");
 dialogWindow.document.close();

}  


function HideDialog() {
    if( dialogWindow != null ) {
        if (typeof(dialogWindow.document) == "object") 
            dialogWindow.close()
    }
}  
//-->