

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

function changeSubmenuImage(idsub, newImage){
	var count;
	for (count=1; count<999; count++){
		if (document.getElementById("submenu" + count)!=null){
				document.getElementById("submenu" + count).setAttribute("background", '../menu_ver_trans.gif ');
		}
	}
	
	if (document.getElementById(idsub)!=null){
		document.getElementById(idsub).setAttribute("background", newImage);
	}
}

		
		
		
		function hide(menu){
			document.getElementById(menu).style.visibility='hidden';
		}
			
		function show(menu){

                        
			document.getElementById(menu).style.visibility="visible";



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

function ShowPdfWindow2()
{
var	wnd=null;
	wnd=window.open("","PdfWindow2",
	"scrollbars=1,toolbar=0,location=0,menubar=0,dirctories=0,status=0,resizable=1,width=780,height=630,top=50,left=00"
	);
	wnd.focus(1);
}

