
//Blue Host has software that specifically blocks linking misuse.
//They protect your links.

function changeIndex(newIndex){
  //First checks for a null or undefined value, and defaults
  //to the base site.
//  if (!validSite()) { 
//        if (newIndex == null){top.location = "http://www.1-800-serve-em.com";}
//            else{ top.location = 'http://www.1-800-serve-em.com/'+newIndex; }
//  }
}

function changeIndex(){
  //First checks for a null or undefined value, and defaults
  //to the base site.
//  if (!validSite()) {top.location = "http://www.1-800-serve-em.com";}
}

function validSite(){
    //Checks to see if the window is based at 1-800-serve-em.com.
    //and the second one makes sure that the page cannot be opened by itself in
    //a secondary window
//    if(((new String(window.location)).indexOf("http://www.1-800-serve-em.com") != 0) &&
//       ((new String(window.location)).indexOf("http://1-800-serve-em.com") != 0)){return false;}
//    if(window.top.frames.length < 2){return false;}
//    return true;
return false;
}



