function change_to(element) {

element.style.color ='#004A66';
element.style.cursor ='hand';
}
function change_back(element) {
element.style.cursor ='auto';
element.style.color = '#99B7C2';
}
function geturl(url){
parent.location.href=url;
}

