Das ist ein skript das man beim rechts klick eine neue seite öffnet.
wie müsste ich den skript umschreiben dass genau beim mauszeiger ein iframe mit links sich öffnet.
<html>
<head>
<title>Untitled</title>
</head>
<script language="JavaScript">
<!--
if(navigator.appName == 'Microsoft Internet Explorer' && parseInt (navigator.appVersion) >=4)
{
function click()
{
if(event.button==2)
{
open("seite.html");
}
}
document.onMouseDown=click
}
//-->
</script>
<body>
<script>
if (self != top){
top.location = self.location
}
</script>
</body>
</html>