<html>
<head>
<title>Function Type Arguments Caller Example</title>
<script type="text/javascript">
function outer(){
inner();
}
function inner(){
alert(arguments.callee.caller);
}
outer();
</script>
</head>
<body>
</body>
</html>