Aight
where does a link go in this and whats the code so as it opens a new page when its completed its final swipe over.
cheers
<body scroll=no bgcolor=black>
<div id=sampleLayer style="position:absolute; top:2px; left:1px; width:1px; height:600px; border: 1px solid #FFFFFF; font-family:Verdana; font-size:8pt"></div>
<script language=JavaScript>
var posX, posY;
var ie = document.all?1:0;
var ns = document.layers?1:0;
var dom = document.getElementById?1:0;
var dhtml = new svetLayer("sampleLayer");
var path = new Array(1,3,5,3,12,3,22,3,33,3,44,3,55,3,66,5,77,3,88,3,99,3,120,3,150,3,200,3,257,3,300,3,350,3,377,3,400,3,422,3,434,3,452,3,476,3,497,3,515,3,536,3,554,3,569,3,587,3,602,3,614,3,6 29,3,641,3,644,3,656,3,668,3,686,3,686,3,686,3,686,3,683,3,683,3,671,3,671,3,668,3,662,3,656,3,650,3,647,3,647,3,638,3,635,3,629,3,623,3,620,3,617,3,611,3,605,3,599,3,590,3,587,3,5 81,3,578,3,569,3,566,3,560,3,551,3,548,3,545,3,539,3,530,3,527,3,524,3,518,3,515,3,509,3,500,3,485,3,479,3,479,3,479,3,476,3,467,3,467,3,455,3,452,3,452,3,449,53,440,3,437,3,434,3, 428,3,425,3,419,3,413,3,410,3,401,3,398,3,398,3,395,3,386,3,383,3,380,3,380,3,380,3,377,3,374,3,368,3,368,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3,365,3, 365,3,368,3,398,3,698,3,782,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3, 950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,950,3,955);
var index = 0;
var trNum = 0;
function svetLayer(id)
{
this.name = dom?document.getElementById(id):ie?document.all[id]:ns?document.layers[id]:null;
if (this.name !== null)
{
this.css = (dom| |ie)?this.name.style:this.name;
this.x = dom?this.css.pixelLeft:ie?parseInt(this.css.left):this.css.left;
this.y = dom?this.css.pixelTop:ie?parseInt(this.css.top):this.css.top;
this.moveTo = moveTo;
return this;
}
else alert('Your layer does not exist');
}
function moveTo(x,y)
{
if(dom| |ie)
{
this.x=x;
this.y=y;
this.css.left=x;
this.css.top=y;
}
else this.css.moveTo(x,y);
}
function timeline()
{
if(trNum < (path.length-1))
{
dhtml.moveTo(path[trNum],path[trNum+1])
trNum += 2;
setTimeout('timeline()',10);
}
else trNum=0;
}
window.onload=timeline;
</script>