// JavaScript Document
// Reinderizzamento al altro sito web
<!--
//change below target URL to your own
var targetURL="http://www.pcgrafica.com"
//change the second to start counting down from
var countdownfrom=4

var currentsecond=document.redirect.redirect2.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
// Fine documento