function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		menu_01_on = newImage("images/menu-on-01.gif");
		menu_02_on = newImage("images/menu-on-02.gif");
		menu_03_on = newImage("images/menu-on-03.gif");
		menu_04_on = newImage("images/menu-on-04.gif");
		menu_05_on = newImage("images/menu-on-05.gif");
		preloadFlag = true;
	}
}

  function popupWin(url, width, height) {
    win = window.open("","okno","toolbar=no,location=no,directories=no,"
                             +"status=no,menubar=no,scrollbars=no,resizable=no,"
                             +"copyhistory=no,width="+width+",height="+height+",left=50,top=50");
  	win.document.write ("\<HEAD\>\<TITLE\>Forte Sweden\<\/TITLE\>\<\/HEAD\>")
	win.document.write ("\<body topmargin=0 leftmargin=0\>\<img src=\""+url+"\" border=0 \>\<\/body\>")	
  }
  
    function popupPage(url, width, height) {
    win = window.open(url,"popup","toolbar=no,location=no,directories=no,"
                             +"status=no,menubar=no,scrollbars=no,resizable=yes,"
                             +"copyhistory=no,width="+width+",height="+height+",left=50,top=50");
  }
  
  function popupPage1(url, width, height) {
    win = window.open(url,"popup","toolbar=no,location=no,directories=no,"
                             +"status=no,menubar=no,scrollbars=yes,resizable=yes,"
                             +"copyhistory=no,width="+width+",height="+height+",left=50,top=50");
  }