Well sort of. The frame page is opened by clicking a link which is generated by javascript. I dont know if this is a yes or a no. No onclick event is used though. Here ia a short version of the home page...
<html>
<CFINCLUDE template="\menu.cfm">
<head>
<title>Home page</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=1,height=1');");
}
// End -->
</script>
</head>
<body onload="if (top.location != location) top.location = location;">
<center>
<table></table>
</center>
</html>