<!--
function confirmation() { 
var answer = confirm("Welcome to Tom's Blog if you want to come in select \n\"OK\"\nor\n\"Cancel\" if you want to leave") 
if (!answer){ 
alert("Bye Bye Douchey!"); 
history.go(-1); } 
else{ 
alert("Thanks for sticking around!") 
}
} 
--> 
