/****************************************************
*Author: Peng Chuang
*Date: 1/30/01
*Name: frameBuster
*Input:None
*Output:None
*Purpose: making sure the page is not in a frame set
*****************************************************/
function frameBuster(){
	if(window.top.location!=self.location){
		window.top.location=self.location;
	}
}