function myPopup1() {
window.open( "hej.htm", "myWindow", 
"status = 1, height = 500, width = 420, resizable = 0, scrollbars = 1" )
}





function myPopup2() {
window.open( "intresse.htm", "myWindow", 
"status = 1, height = 350, width = 220, resizable = 0" )
}





function fixaMeny() {
	var meny = document.getElementsByTagName('li');
	for (i=0;i<meny.length;i++) {
		meny[i].onmouseover = function(){this.style.backgroundColor="#F2F0F0";};
		meny[i].onmouseout = function(){this.style.backgroundColor="#FFFFFF";};
	}
}

window.onload=fixaMeny;











