I couldn't find it so, you could use this as your link array (comments green):
Code:
var slidelinks=new Array();
slidelinks[0]=["http://www.dynamicdrive.com", "_new"] // syntax for new window
slidelinks[1]=["http://google.com", "main"] // syntax for frame named 'main'
slidelinks[2]=["http://www.geocities.com", ""] // syntax for same window or frame as script
and this for the gotoshow() function:
Code:
function gotoshow(){
if (slidelinks[whichlink][1]=='_new')
window.open(slidelinks[whichlink][0])
else if (slidelinks[whichlink][1]!='')
parent[slidelinks[whichlink][1]].location=slidelinks[whichlink][0]
else
window.location=slidelinks[whichlink][0]
}
Bookmarks