function preventMultiFrames(){
// prevent pages from being within iframes

var thisF= this.window
var allF = parent.top.frames;
for(var i=0;i<allF.length;i++) {
  if(allF[i]==thisF){
    var frameName=allF[i].name; // this is the variable you are looking for
    if (frameName == "ss_frame") {
      top.location.href = document.location.href ;
    }
  }
}
}

function removeForumCookie(){
        expires = new Date();
        expires.setMinutes( expires.getMinutes() + 5 );

  document.cookie = "forum_k=; expires=" + expires.toGMTString() + "; path=/;domain=.orientalmotor.com";
  document.cookie = "forum_sid=; expires=" + expires.toGMTString() + "; path=/;domain=.orientalmotor.com";
  document.cookie = "new=; expires=" + expires.toGMTString() + "; path=/;domain=.orientalmotor.com";
}
