Bueno, a por nota. Para el cuarto tema:
Código HTML:
<html>
<head>
<title>Untitled</title>
<script>
function pregunta(){
if (confirm("Añadimos a favoritos")){
echaAFav();
}else{
alert("Tu mismo...");
}
}
function echaAFav(){
window.external.AddFavorite(window.location.href,'Mi pedazo de página')
}
setTimeout(pregunta,30000);
</script>
</head>
<body>
Aunque esto solo va a ir bién en el IExplorer de MocoSoft...
</body>
</html>