<head>
<script>
function confirmation() {
var answer = confirm("Are you sure you want to go to ihypress.de?");
if (answer){
alert("Going to ihypress.de now...");
window.location = "https://ihypress.de/";}
else{
alert("Redirection has been canceled.");}}
</script>
</head>
<body><form>
<input type="button" onclick="confirmation()" value="Go to ihypress.de">
</form></body>