<!--This is the script that checks to see if this frameset has been opened from an orphaned page. THIS SCRIPT SHOULD BE CALLED FROM THE FRAMESET. If it is, it replaces the content of the frame named "main" with the orphaned html page. There is a corresponding script named FrameTest() that lives in frametest.js called in the body onload in of the orphaned page that must be in place for this to work.-->


function CheckFrames()
{
var search = document.location.search.replace("?","");
if(search.length>0){
self.main.location.href=unescape(search);
}
}
