Podría ser algo así:
PoC:
Código (javascript) [Seleccionar]
function areaCirculo(radio){
var pi = Math.PI;
radio = radio * radio;
alert(pi * radio);
}
PoC:
Código (html4strict) [Seleccionar]
<body onLoad="areaCirculo(3);">