// --------------------------------------------------------
// load check                                    				 --
// copyright 2001 by abaton                              --
// --------------------------------------------------------


function checkFrame (goto_site) {
	if (goto_site != '') {
		if (top.location == self.location) {  // without frames
			top.location.href = goto_site;
		}
	}	
}

