var newWindow = null

function makeNewWindow(name,width,height) {
	var rozmery = null
  	height += 30;
  	width  += 30;
	rozmery = "height=" + height + ",width=" + width
	
	newWindow = window.open("","",rozmery)
	if (newWindow != null) {
		// assemble content for new window
		var newContent = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"'
	        + '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
			+ '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">'
			+ '<head>'		
			+ '<meta http-equiv="content-language" content="cs" />'
			+ '<meta http-equiv="content-type" content="text/html; charset=windows-1250" />'
			+ '<link rel="stylesheet" href="gazklub.css" type="text/css" />'
			+ '<title>Gaz Klub</title>'
			+ '</head>'
			+ '<body>';
			
		newContent += '<img src="' + name + '" onclick="javascript: self.close();" alt="" style="margin: auto; vertical-align: middle;" /><br />'
		newContent += 'Okno uzavřete kliknutím na obrázek.'
		
		newContent += "</body></html>"
		// write HTML to new window document
		newWindow.document.write(newContent);
		newWindow.document.close();
		
		return false;
	}
	
	return true;
}
function vlozInzPrepniTyp(typ){
	if(typ=='B'){
		document.getElementById("typA").style.display="none";
	}
	else{
		document.getElementById("typA").style.display="block";
	}
}
