<script language="Javascript">
<!-- Hiding
/*	Script by Lefteris Haritou	
	Copyright 1998 
	http://www.geocities.com/~lef
	This Script is free as long 
	as you keep the above credit !
*/
bname=navigator.appName;
bversion=parseInt(navigator.appVersion)
if ((bname=="Netscape" && bversion>=4) || (bname=="Microsoft Internet Explorer" && bversion>=4)){
if (bname=="Netscape"){
brows=true
del=30
}
else{
brows=false
del=80
}
var msg=0;
var z=0;
var timer1;
var message= new Array();
var color= new Array();
var values= new Array('-6','-5','-4','-3','-2','-1','+1','+2','+3','+4','+5','+6')
// Put here your own messages. Add as many as you want (Do not edit anything else in the Script except the lines below)

message[0]='Animated Titles'
color[0]='#FF0000'

message[1]='A new JavaScript'
color[1]='##009900'

message[2]='Fully customisable and easy to use'
color[2]='#003399'

message[3]='&copy; 2000 BDG Publishing Inc.'
color[3]='#990033'

message[4]='NS 4.x and IE 4.x supported'
color[4]='#ff66cc'


// Put here your own messages. Add as many as you want (Do not edit anything else in the Script except the lines above)


function start(){
if ((bname=="Netscape" && bversion>=4) || (bname=="Microsoft Internet Explorer" && bversion>=4)){
if(z<values.length){
if (brows){
document.layers['text'].document.writeln('<P Class="main" Align="Center"><font color="'+color[msg]+'" size="'+values[z]+'" face="Arial"><NOBR>'+message[msg]+'</NOBR></font></P>')
document.layers['text'].document.close();
}
else{
text.innerHTML='<Pre><P Class="main" Align="Center"><font color="'+color[msg]+'" size="'+values[z]+'" face="Arial"><NOBR>'+message[msg]+'</NOBR></font></P></Pre>'
}
z++;
timer1=window.setTimeout('start()',del)
}
else
chg();
}
}
function stop(){
if ((bname=="Netscape" && bversion>=4) || (bname=="Microsoft Internet Explorer" && bversion>=4))
window.clearTimeout(timer1);
window.clearTimeout(timer2);
}

function chg(){
if (brows){
document.layers['text'].document.writeln('')
document.layers['text'].document.close();
}
else
text.innerHTML='';
if(msg<message.length-1){
msg++;
}
else
msg=0;
z=0;
timer2=window.setTimeout('start()',2000)
}
}
// done hiding -->
</script>
<body onLoad="start()" onUnload="stop()">

<div id="text" style="position: absolute; left: 4; top: 80"></div>


