32 lines
685 B
HTML
Raw Normal View History

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<script>
function messaggio(n)
{
if (n == 1) alert ("NORD");
if (n == 2) alert ("CENTRO");
if (n == 3) alert ("SUD");
return false;
}
</script>
<body>
<MAP name="italymap">
<AREA shape="rect" coords=" 0, 0,180,110" href="#" onclick="return messaggio(1);">
<AREA shape="rect" coords=" 80,110,220,200" href="#" onclick="return messaggio(2);">
<AREA shape="rect" coords="120,200,300,350" href="#" onclick="return messaggio(3);">
</MAP>
<IMG src="../images/italy.gif" border="0" align="left" usemap="#italymap" WIDTH="304" HEIGHT="350">
<BR><BR><BR>
</body>
</html>