// *****************************************************************************// **                                SETTINGS                                 **// *****************************************************************************// 'linka' use this if part of the URL is the same in ALL the links// In this example all the files are in a subfolder called 'pages'linka='';// the filename of the page the menu appears in eg 'menu.html'thisPage='';// Do you want to use images for the category bullets?// If so then specify the path to your images folder from the menu pageimgPath='image/pbpc/';// do you want to use images for the category bullets?lev1img='yes';					// insert yes or no// give image names and dimensionslev1OpName='minus.gif';			// open image namelev1OpHeight='9';				// image heightlev1OpWidth='18';				// image widthlev1ClosName='plus.gif';		// closed image namelev1ClosHeight='9';			// image heightlev1ClosWidth='18';				// image width// do you want to use images for the sub-category bullets?lev2img='yes';		// insert yes or no// give image names and dimensionslev2Name='minus2.gif';			// image namelev2Height='9';				// image heightlev2Width='36';					// image width// do you want to use a text character for the sub-category bullets?lev2Char='no';		// insert yes or no// set bullet character for level 2 bulletsbullet = '&#155; ';// base target - the frame that the links are targettingbase = '';// *****************************************************************************// **                             END OF SETTINGS                             **// *****************************************************************************// pulls 'page' variable out of URL - do not alter	var x = 0	page = location.search.substr(1).split("?")	for (x=0;x<=page.length;x++) {		eval(page)		}page = escape(page);page = page.slice(7);// do not alter this bitfunction subMenu(name,linkb) { this.name = name; this.linkb = linkb;}document.write('<BASE target="' + base + '">');// *****************************************************************************// **                             BUILD MENU DATA                             **// *****************************************************************************// NN ROCNIK 2005if (page=='nn2005') {thisMenu = new Array();thisMenu[0] = new subMenu('ČÍSLO 01/2005','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=34&stromhlmenu=46:47');thisMenu[1] = new subMenu('ČÍSLO 02/2005','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=36&stromhlmenu=46:49');thisMenu[2] = new subMenu('ČÍSLO 03/2005','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=36&stromhlmenu=46:50');}// NN ROCNIK 2004if (page=='nn2004') {thisMenu = new Array();thisMenu[0] = new subMenu('ČÍSLO 01/2004','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=34&stromhlmenu=33:34');thisMenu[1] = new subMenu('ČÍSLO 02/2004','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=36&stromhlmenu=33:36');thisMenu[2] = new subMenu('ČÍSLO 03/2004','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=36&stromhlmenu=33:44');thisMenu[3] = new subMenu('ČÍSLO 04/2004','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=36&stromhlmenu=33:45');}// NN ROCNIK 2003if (page=='nn2003') {thisMenu = new Array();thisMenu[0] = new subMenu('ČÍSLO 01/2003','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=10&stromhlmenu=4:10');thisMenu[1] = new subMenu('ČÍSLO 02/2003','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=14&stromhlmenu=4:14');thisMenu[2] = new subMenu('ČÍSLO 03/2003','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=15&stromhlmenu=4:15');thisMenu[3] = new subMenu('ČÍSLO 04/2003','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=32&stromhlmenu=4:32');}// NN ROCNIK 2002if (page=='nn2002') {thisMenu = new Array();thisMenu[0] = new subMenu('ČÍSLO 01/2002','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=19&stromhlmenu=3:19');thisMenu[1] = new subMenu('ČÍSLO 02/2002','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=22&stromhlmenu=3:22');thisMenu[2] = new subMenu('ČÍSLO 03/2002','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=30&stromhlmenu=3:30');thisMenu[3] = new subMenu('ČÍSLO 04/2002','search.php?rsvelikost=uvod&rstext=all-phpRS-all&rstema=31&stromhlmenu=3:31');}