function topframe(){
   if (top.location != this.location)
	top.location = this.location
}


function mainframe( url ){
	if (parent.frames.length == 0) 
		window.setTimeout('location.href="' + url +'"',500);
}

function mitFrame(){
	if (parent.frames.length == 0){
		url = document.location.href
		window.setTimeout('location.href="Frame.htm?' + escape(url) +'"',500);
	}
}

function mitFrameSub1(){
	if (parent.frames.length == 0){
		url = document.location.href
		window.setTimeout('location.href="../Frame.htm?' + escape(url) +'"',500);
	}
}

function mitFrameSub2(){
	if (parent.frames.length == 0){
		url = document.location.href
		window.setTimeout('location.href="../../Frame.htm?' + escape(url) +'"',500);
	}
}

function setAktiv(obj){
   if (typeof obj.style=='object') 
	obj.style.color=0xFF0000;
}

function setPassiv1(obj){
   if (typeof obj.style=='object') 
	obj.style.color=0xFFFFFF;
}

function setPassiv2(obj){
   if (typeof obj.style=='object') 
	obj.style.color=0x000000;
}


