var i;
function waitForApplet()
{
  if (document.WesternCalendarApplet.getCalendarStatus() == "false")
     {
       i = i + 1;
       document.getElementById("panchangam").value = "Waiting  " + i; 
       t = setTimeout("waitForApplet()",1000);
     }
}  

function setAppletParms()
{
   document.WesternCalendarApplet.setCalendarParms(2009,1,17.40,78.5,"GMT+0530","http\://www.ssarc.com/");
}

function initPage()
{
  t = document.WesternCalendarApplet.getCalendarStatus();
  setAppletParms();
  waitForApplet();
  document.getElementById("panchangam").value = document.WesternCalendarApplet.getCalendarXML();
}
