// This makes sure the site opens in the frameset
// unfortunately it always goes back to the homepage


if (parent.location.href == self.location.href) {
    if (window.location.href.replace)
        window.location.replace('http://www.questionpoint.org/crs/servlet/org.oclc.home.TFSRedirect?virtcategory=10014');
    else
        // causes problems with back button, but works
        window.location.href = 'http://www.questionpoint.org/crs/servlet/org.oclc.home.TFSRedirect?virtcategory=10014';
}