function blink_msg_alert() {
setTimeout(stop_blink,2000);
document.getElementById("msg_blink_alert").style.textDecoration = "blink";
}

function stop_blink() {
document.getElementById("msg_blink_alert").style.textDecoration = "none";
}

