function Click(url){
this.window.location.href=url;
}

function hide(id_div){
document.getElementById(id_div).style.display="none";
}

function show(id_div){
document.getElementById(id_div).style.display="block";
}
