
if (parent.frames.length > 0){ 
	parent.top.location.href = document.location.href;
}


// POPUP ################################################################## 
function openwin(URL,strName,width,height,left,top){	
	var kleinWin = window.open(URL, strName,"width="+width+",height="+height+",left="+left+",top="+top+",resizable=yes,scrollbars=no,status=no,toolbar=no");
}

// NavHIGHLIGHT ################################################################## 

function funHigh(arg)	{
	 document.getElementById(arg).style.backgroundColor='#90989D';
}

function funLow(arg)	{
	 document.getElementById(arg).style.backgroundColor='#26ACE5';
}



// MOUSEOVER ################################################################## 

Normal1 = new Image();
Normal1.src = "/images/blind.gif";


function funImgChange(arg1,arg2)	{
	window.document.images[arg1].src = "images/" + arg2;
}


function Change(name,Bildobjekt){
	window.document.images[name].src = Bildobjekt.src;
}


function funOpenerLoc(arg) {
	window.opener.document.location.href = arg;
}


