<html>
<head>
<script type= "text/javascript"
src="multa.js">
</script>
</head>
<body onload = "call_alert('are
','you ','there?')">
</html>
// Create three variables
var
a, b,
c;
// a function to display 3 arguments
function call_alert(
str1, str2, str3 )
{
a = str1;
b = str2;
c = str3;
alert( a + b + c );
}