

function changeMenuImage(idneu, newImage){
	var count;
	for (count=1; count<999; count++){
		if (document.getElementById("menu" + count)!=null){
				document.getElementById("menu" + count).setAttribute("background", '../../images_menu/menu_ver_grau.gif');
		}
	}
	
	if (document.getElementById(idneu)!=null){
		document.getElementById(idneu).setAttribute("background", newImage);
	}
}



function ShowPdfWindow()
{
var	wnd=null;
	wnd=window.open("","PdfWindow",
	"scrollbars=1,toolbar=0,location=0,menubar=0,dirctories=0,status=0,resizable=1,width=700,height=550,top=50,left=240"
	);
	wnd.focus(1);
}

