<!--This is the script that checks to see if this page has been opened outside of its frame. THIS SCRIPT SHOULD BE PLACED WITHIN THE BODY TAGS OF THE FRAMESOURCE PAGE OR CALLED IN THE BODY ONLOAD IF CALLED TO AN OUTSIDE .JS FILE.  If it is, it replaces the location with the url of the frameset which is index.html and adds a search string at the end of the url which is equal to the page name. The frameset page reads the search string and sets it as the source for the selected frame. There is a corresponding script in the frameset page for this to work.-->

function FrameTest()
{
if(parent == window){
var frameSet = "indexa.html";
var currentPage=escape(parent.document.location.href);
document.location.replace(frameSet+"?"+currentPage);
}
}