// JavaScript Document  dra-go

<!-- ;
var newwindow;
var wheight = 0, wwidth = 0;
function popimg(url, title, iwidth, iheight, colour) {
var pwidth, pheight;

if ( !newwindow || newwindow.closed ) {
pwidth=iwidth+30;
pheight=iheight+30;
newwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=50,left=10');
wheight=iheight;
wwidth=iwidth;
}

if (wheight!=iheight || wwidth!=iwidth ) {
pwidth=iwidth+30;
pheight=iheight+60;
newwindow.resizeTo(pwidth, pheight);
wheight=iheight;
wwidth=iwidth;
}

newwindow.document.clear();
newwindow.focus();
newwindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head> <body bgcolor= \"' + colour + '\"> <center>');
newwindow.document.writeln('<a title="Hit to close!" href="javascript:window.close();"><img src=' + url + ' border=0></a>');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
newwindow.focus();
}

// Routines to tidy up popup windows when page is left
// Call with an onUnload="tidy5()" in body tag

function tidy5() {
if (newwindow && !newwindow.closed) { newwindow.close(); }
}




			/*Menu 0 Settings*/
			var a = qmad.qm0 = new Object();
		

			/* ----Tree Menu Add-On Settings---- */

			a.tree_hide_focus_box = true;
			a.tree_auto_collapse = true;			

			a.tree_expand_step_size = 8;
			a.tree_collapse_step_size = 15;
			a.tree_expand_animation = 2		//0=none, 1=acceleration, 2=deceleration, 3=normal
			a.tree_collapse_animation = 3		//0=none, 1=acceleration, 2=deceleration, 3=normal

			a.tree_width = 200;
			a.tree_sub_sub_indent = 15; 

			
		

			

			/* ----Item Bullets Add-On Settings---- */
			
			a.ibullets_apply_to = "parent"  //parent, non-parent, all

			a.ibullets_main_image = "images/tree_main_plus.gif";
			a.ibullets_main_image_active = "images/tree_main_plus_active.gif";
			a.ibullets_main_image_hover = "images/tree_main_plus_hover.gif";
			a.ibullets_main_image_width = 13;
			a.ibullets_main_image_height = 13;
			a.ibullets_main_position_x = -15;
			a.ibullets_main_position_y = -6;
			a.ibullets_main_align_x = "right"
			a.ibullets_main_align_y = "middle"

			a.ibullets_sub_image = "images/tree_sub_plus.gif";
			a.ibullets_sub_image_active = "images/tree_sub_plus_active.gif";
			a.ibullets_sub_image_hover = "images/tree_sub_plus_hover.gif";
			a.ibullets_sub_image_width = 5;
			a.ibullets_sub_image_height = 5;
			a.ibullets_sub_position_x = -10;
			a.ibullets_sub_position_y = -3;
			a.ibullets_sub_align_x = "left"
			a.ibullets_sub_align_y = "middle"
			
			
	
function zoom(filename, sirka, vyska){
obraz=window.open("about:blank","_blank","toolbar=0,status=0,history=0"+
",scrollbars=0,resizable=1,width="+sirka+",height="+vyska+",top=4,left=4");
obraz.document.open("text/html");
obraz.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n");
obraz.document.write("<head>\n<title>"+filename+"</title>\n");
obraz.document.write("<style>body { margin: 0; padding: 0; }</style>\n");
obraz.document.write("</head>\n<body>\n<body>\n<img src=\""+filename+".jpg\"");
obraz.document.write(" width=\""+sirka+"\" height=\""+vyska+"\">\n");
obraz.document.write("</body>\n<body>\n<body>\n</html>\n");
obraz.document.close();
}