function clock()
{
	var new_date= new Date();
	var h,m,s;
	
	var dayss = new Array(
      'Sunday','Monday','Tuesday',
      'Wednesday','Thursday','Friday','Saturday');
    var monthss = new Array(
      'Jan','Feb','Mar','Apr','May',
      'Jun','Jul','Aug','Sep','Oct',
      'Nov','Dec');
	
	var time="";
	h=new_date.getHours();
	m=new_date.getMinutes();
	s=new_date.getSeconds();
	d=new_date.getDate();
	fy=new_date.getFullYear();
	mo=monthss[new_date.getMonth()];	
	if (h <= 9) h = "0" + h;
    if (m <= 9) m = "0" + m;
    if (s <= 9) s = "0" + s;
    time += mo+" "+d+", "+fy+" "+h + ":" + m;
    document.getElementById('ceasuul').value=time;
    gizmo = setTimeout("clock()", 1000);
}




