function menu_Over(text){
document.getElementById(text).style.background="#2971bd";
}

function menu_Out(text){
document.getElementById(text).style.background="#1051a5";
}

function open_window(text){
idwindow=window.open(text,"","top=10,left=200,width=640,height=600,toolbar=0,menubar=1,location=0,directories=0,scrollbars=yes,resizeable=yes");
idwindow.focus();}