событие=
"язык: скрипт"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Скрипты</title>
<style type="text/css">
#msg {
display: none;
position: absolute;
width: 280px;
top: 200px;
left: 50%;
margin-left: -150px;
background: #fc0;
padding: 10px;
}
</style>
<script type="text/javascript">
function textMsg(msg) {
document.getElementById('text').innerHTML = msg;
document.getElementById('msg').style.display = 'block';
}
function closeMsg() {
document.getElementById('msg').style.display = 'none';
}
</script>
</head>
<body>
<div id="msg">
<div id="text"></div>
<div id="close"><a href="javascript:closeMsg()">[Закрыть]</a></div>
</div>
<p>Нажмите на <a href="#" onclick="textMsg('Спасибо, что нажали на ссылку!')">
ссылку для открытия сообщения</a>.</p>
</body>
</html>