function fun1(p1,p2)
{
fun2(p1,p2);
document.write("fun1<br>");
}function fun2(p1,p2)
{
fun3(p1,p2);
document.write("fun2<br>");
}function fun3(p1,p2)
{
document.write(p1+p2+"<br>");
document.write("fun3<br>");
}
fun1("one","two");