function startclock(formToLoad)
{
    var thetime=new Date();

    var nhours=thetime.getHours();
    var nmins=thetime.getMinutes();

    if (nhours==0)
     nhours=12;

    if (nmins<10)
     nmins="0"+nmins;
    if (nhours<10)
     nhours="0"+nhours;

     switch(formToLoad)
     {
	    case "lingua" : document.getElementById("lingua").value = nhours+":"+nmins;
		    break;
	    case "clockform" : document.getElementById("clockspot").value=nhours+":"+nmins;
		    break;
     }

     switch(formToLoad)
     {
	    case "lingua" : setTimeout("startclock('lingua')",1000);
		    break;
	    case "clockform" : setTimeout("startclock('clockform')",1000);
		    break;
     }
}


var secondsca=10;
  
function displayca()
{
    if (secondsca > 0)
    {
        secondsca -= 1 ;
        setTimeout("displayca()",1000);
    }
    else
        HideFlashCasaAberta();
}
