rizome:
Muchas gracias por la ayuda pero te comento, fijate que estoy tratando de incorporar este codigo en php y el mensaje no me lo tiene que tirar al presionar un boton, sino que cuando van hacia un link te describo como lo tengo. Porque he tratado de hacerlo como tu me puciste en tu correo pero lamentablemente no me funciona, me deja pasar a la siguiente pagina si le doy cancelar.
Código :
<script language="JavaScript">
function premibottone() {
confirm ('Mensaje de confirmacion') ;
}
</script>
<?php
$tipo = $_POST['usuario'] ;
if ($tipo == "erickm" ){
print "<map name=Map id=Map>
<!--COMPLETO TIPO A--><area shape=rect coords=7,146,153,171 href=tipoa_a.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO B--><area shape=rect coords=165,146,313,171 href=tipob_a.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO C--><area shape=rect coords=323,146,470,171 href=tipoc_a.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO D--><area shape=rect coords=482,146,629,171 href=tipod_a.php onclick=premibottone() target=_blank />
</map>";
}else{
print "<map name=Map id=Map>
<!--COMPLETO TIPO A--><area shape=rect coords=7,146,153,171 href=tipoa_b.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO B--><area shape=rect coords=165,146,313,171 href=tipob_b.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO C--><area shape=rect coords=323,146,470,171 href=tipoc_b.php onclick=premibottone() target=_blank />
<!--COMPLETO TIPO D--><area shape=rect coords=482,146,629,171 href=tipod_b.php onclick=premibottone() target=_blank />
</map>";
}
?>