<!-- Original:  Corey (638@gohip.com ) -->
<!-- Web Site:   http://six38.tripod.com -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var start=new Date();
	start=Date.parse(start)/1000;
	var counts=10;
	function CountDown(){
		var now=new Date();
		now=Date.parse(now)/1000;
		var x=parseInt(counts-(now-start),10);
		if(document.form1){document.form1.clock.value = x;}
		if(x>0){
			timerID=setTimeout("CountDown()", 100)
		}else{
			location.href="http://journal.plaza4.us"
		}
	}
//  End -->

window.setTimeout('CountDown()',100);


document.writeln('<FORM NAME=\"form1\">');
document.writeln('You are being redirected in ');
document.writeln('<INPUT TYPE=\"text\" NAME=\"clock\" SIZE=\"2\" VALUE=\"10\"> seconds.<br>');
document.writeln('<a href=\"http://journal.plaza4.us\">Click here to go immediately</a>');
document.writeln('</FORM>');