
document.write('<META http-equiv="Page-Exit" CONTENT="progid:DXImageTransform.Microsoft.Fade(duration=0.3,overlap=1.0);  " />');

if (top.frames.length <1)
	{top.location.href= "index.htm"} ;

function actomsg(txt) { window.status=txt; }

// (C) 2004 CodeLifter.com
/*
function nrcIE(){
	if (document.all){return false;}}
function nrcNS(e){
	if(document.layers||(document.getElementById&&!document.all)){ 
	if (e.which==2||e.which==3){
	return false;}}} 
	if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=nrcNS;
	}else{document.onmouseup=nrcNS;document.oncontextmenu=nrcIE;}
	document.oncontextmenu=new Function("return false");
*/



// ############### LAGEN IN HET SUBMENU ######################################

function menulaag(optie, toestand) {
	identity=top.actosubmenu.document.getElementById(optie);
	identity.className=toestand;
}

function heelmenulaag(toestand) {
	menulaag ('laag00',toestand);
	menulaag ('laag00B',toestand);
	menulaag ('laag01',toestand);
	menulaag ('laag02',toestand);
	menulaag ('laag03',toestand);
	menulaag ('laag04',toestand);
	menulaag ('laag05',toestand);
	menulaag ('laag06',toestand);
	menulaag ('laag07',toestand);
}

function zetlaag(optie, toestand) {
	heelmenulaag ('laaguit');
	menulaag (optie, toestand); 
}


// ############### stijlwisseling HOOFDMENU-OPTIE AAN/UIT ######################################

function hoofdmenu(optie, toestand) {
	identity=top.actohoofdmenu.document.getElementById(optie);
	identity.className=toestand;
}

function heelhoofdmenu(toestand) {
	hoofdmenu ('hfd00',toestand);
	hoofdmenu ('hfd01',toestand);
	hoofdmenu ('hfd02',toestand);
	hoofdmenu ('hfd03',toestand);
	hoofdmenu ('hfd04',toestand);
	hoofdmenu ('hfd05',toestand);
	hoofdmenu ('hfd06',toestand);
	hoofdmenu ('hfd07',toestand);
}

function hoofdstuk(optie, toestand) {
	heelhoofdmenu ('aan'); 
	hoofdmenu (optie, toestand);
}

// ############### stijlwisseling SUBMENU-OPTIE AAN/UIT ######################################

function submenu(optie, toestand) {
	identity=top.actosubmenu.document.getElementById(optie);
	identity.className=toestand;
}

function heelsubmenu(toestand) {	// Let op: deze opsomming moet identiek zijn aan wat gebruikt wordt in het submenu!
	submenu ('optie001',toestand);	// Home
	submenu ('optie002',toestand);	// 	English
	submenu ('optie001B',toestand);	// 	
	submenu ('optie002B',toestand);	// 	
	submenu ('optie003B',toestand);	// 	

	submenu ('optie101',toestand);	// Wat bieden wij (intro)
	submenu ('optie102',toestand);	// 	Software
	submenu ('optie103',toestand);	// 	Implementatie
	submenu ('optie104',toestand);	// 	Opleiding
	submenu ('optie105',toestand);	// 	Nazorg
	submenu ('optie106',toestand);	// 	Hardware

	submenu ('optie201',toestand);	// Voor wie
	submenu ('optie202',toestand);	// 	Onze klanten
	submenu ('optie203',toestand);	// 	Klant-verhalen
	
	submenu ('optie301',toestand);	// Wie zijn wij
	submenu ('optie302',toestand);	// 	Onze werkwijze
	submenu ('optie303',toestand);	// 	Onze partners
	submenu ('optie304',toestand);	// 	Onze visie/missie
	
	submenu ('optie401',toestand);	// Vacatures
	submenu ('optie402',toestand);	// 
	
	submenu ('optie501',toestand);	// Mijn Acto
	submenu ('optie502',toestand);	// 
	submenu ('optie503',toestand);	// 
	
	submenu ('optie601',toestand);	// Nieuws
	submenu ('optie602',toestand);	// 
	submenu ('optie603',toestand);	// 
	submenu ('optie604',toestand);	// 
	submenu ('optie605',toestand);	// 
	
	submenu ('optie701',toestand);	// Contact : Adres + mail
	submenu ('optie702',toestand);	// 	Wie belt u?
	submenu ('optie703',toestand);	// 	Routebeschrijving
	submenu ('optie704',toestand);	// 	Info aanvragen
}

function paragraaf(optie, toestand) {
	heelsubmenu ('aan');
	submenu (optie, toestand);	
}

// ############### stijlwisseling TEKSTVLAK GROOT/KLEIN #####################################

function tekstvlak(optie, toestand) {
	identity=top.actocontent.document.getElementById(optie);
	identity.className=toestand;
}

function toestand(optie, toestand) {
	identity=top.actocontent.document.getElementById(optie);
	identity.className=toestand;
}

function openofsluit(optie) {
	identity=top.actocontent.document.getElementById(optie);
	toestand=identity.className;
	if (toestand=='groot') 	{ identity.className='klein'; }
	else			{ identity.className='groot'; }
}


// ############### stijlwisseling: Achtergrondkleur aanpassen bij onMouseOver #####################################
//
//	activeren via bijv:  <div class="kolom3" onmouseout="achtergrondkleur(this, 'wit');" onmouseover="achtergrondkleur(this, 'pastel');" > ... </div>
//
//	'wit' doet hier op zich trouwens niets, het zou ook elke andere waarde kunnen zijn.

function achtergrondkleur(objRef, kleur) {
			objRef.style.backgroundColor = ('pastel' == kleur) ? '#FEF9F3' : '#FFFFFF';
			objRef.style.borderColor     = ('pastel' == kleur) ? '#F4C994' : '#FFFFFF';
			return;
		}