Subj : How to call a function in a different Script file ? To : netscape.public.mozilla.jseng From : GOPALA KRISHNA PRABHU Date : Mon Nov 24 2003 03:08 pm HI Guys... Is it possible to Call a function in One script File from a different file ? How Can I call PrintHello() Function in File1.js??? Example. File1.js ====== function ArgumentFunction(Tag) { i =100; PrintHello(i); } File2.js ====== function PrintHello(i) { t = java.lang.System.out; t.println("Test Function to say Hello !!! " + i); } .