var utvonal=path();
var menuURL = new Array( );
var menuTarget = new Array( );

var boxmenu = new Array( );
boxmenu[1]="0/61E344FA33BD4AD4C12578F700403781?OpenDocument";
boxmenu[2]="0/0E82F3CE1F310F0BC125792E00362A63?OpenDocument";
boxmenu[3]="0/2FEE1BDAF337548BC12578F700407460?OpenDocument";

var smallboxmenu = new Array( );
smallboxmenu[1]="0/4F8F39B5E33A81AFC12578FB002DE726?OpenDocument";
smallboxmenu[2]="0/1EA1F8ED258A6321C12578F700408D35?OpenDocument";
smallboxmenu[3]="0/2E8A33361015AB2EC12578FB002E3364?OpenDocument";
smallboxmenu[4]="0/CC828F272D5DFFADC12578FB002EA724?OpenDocument";
smallboxmenu[5]="0/DD07B96558BDFFC8C12578FB002F4E37?OpenDocument";

function buttonOver(id){
	var button=document.getElementById("menuButton"+id+"Over");
	var buttonOff=document.getElementById("menuButton"+id);
	button.style.display="inline";
	buttonOff.style.display="none";
}

function buttonOut(id){
	var button=document.getElementById("menuButton"+id+"Over");
	var buttonDown=document.getElementById("menuButton"+id+"Down");
	var buttonOff=document.getElementById("menuButton"+id);
	button.style.display="none";
	buttonDown.style.display="none";
	buttonOff.style.display="inline";
}

function buttonDown(id){
	var button=document.getElementById("menuButton"+id+"Down");
	var buttonOver=document.getElementById("menuButton"+id+"Over");
	var buttonOff=document.getElementById("menuButton"+id);
	button.style.display="inline";
	buttonOver.style.display="none";
	buttonOff.style.display="none";
}

function buttonUp(id){
	goToPage(menuURL[id-1],menuTarget[id-1]);
}

function linkOver(id){
	var img=document.getElementById("IMG"+id);
	img.src=utvonal+"v2_arrowRed.png";
}

function linkOut(id){
	var img=document.getElementById("IMG"+id);
	img.src=utvonal+"v2_arrowGray.png";
}

function boxOver(id){
	var box=document.getElementById("box"+id+"Selected");
	var over=document.getElementById("box"+id+"Over");
	box.style.display="inline";
	over.style.display="inline";
}

function boxOut(id){
	var box=document.getElementById("box"+id+"Selected");
	var over=document.getElementById("box"+id+"Over");
	box.style.display="none";
	over.style.display="none";
}

function boxDown(id){
	goToPage(boxmenu[id],"_top");
}

function smallBoxOver(id){
	var box=document.getElementById("smallBox"+id+"Selected");
	box.style.display="inline";
}

function smallBoxOut(id){
	var box=document.getElementById("smallBox"+id+"Selected");
	box.style.display="none";
}

function smallBoxDown(id){
	goToPage(smallboxmenu[id],"_top");
}

function createMenu(){
	var menuParam=document.getElementById("menuParam").value;
	var line=menuParam.split("*");
	for(i=0;i<line.length;i++){
		
		adat=line[i].split("~");
		menuURL[i]=adat[0];
		menuTarget[i]=adat[1];
	}
}

function goToPage(url, target){
	if(url.substring(0,4)!="http" & url.substring(0,4)!="HTTP"){
		url=utvonal+url;
	} 
	
	if(target=="_blank"){
		window.open(url,"MyWindow");
	}else{
		window.location.href=url;
	}
}

function openImage()
{
	var img=document.getElementById("ProductIMG");
	if(img.src.indexOf("unilogo3dweb2.jpg")==-1)
		window.open(document.getElementById("doc_id").value+"/$File/2.jpg","","")
}

