Thread: Dynamica links
View Single Post
Old Feb 2nd, 2007, 4:05 AM   #2
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5 Arevos is on a distinguished road
var currentIndex = 0, maxIndices= 2;

function nextLink() {
    if (currentIndex <= maxIndices)
        window.location = "forsale.htm#" + currentIndex++;
}
Arevos is offline   Reply With Quote