// JavaScript Document
var sLocSlash, sLocPre, sLocPost, sLoc, sDisplay;

// search for last case of slash to locate the file name; get beginning and end of string to use in compilation of new location href value
sLoc = location.href;
sLocSlash = sLoc.lastIndexOf("/");
sLocPre = sLoc.substring(0, sLocSlash);
sLocPost = sLoc.substring(sLocSlash + 1);
sDisplay = sLocPre + "/index.asp";
//document.write(sLocPre + " : " + sLocPost);
//document.write(history.current);
//location.href = sDisplay;