function openwindow( windowURL, windowName, windowFeatures ){
	newWin = window.open( windowURL, windowName, windowFeatures );
	newWin.focus();
  return;
}

function startclock()
{
	var thetime=new Date();
	
	var nhours=thetime.getHours();
	var nmins=thetime.getMinutes();
	var nsecn=thetime.getSeconds();
	var nday = thetime.getDate();
	var nmonth = (thetime.getMonth())+1;
	var nyear = thetime.getYear();
	
	var AorP=" ";
	
	if (nhours>=12)
	    AorP="P.M.";
	else
	    AorP="A.M.";
	
	if (nhours>=13)
	    nhours-=12;
	
	if (nhours==0)
	 nhours=12;
	
	if (nsecn<10)
	 nsecn="0"+nsecn;
	
	if (nmins<10)
	 nmins="0"+nmins;
	 
	if (nmonth<10)
	 nmonth="0"+nmonth;
	
	var obj = document.getElementById('clockspot');
	obj.innerHTML = nhours+":"+nmins+":"+nsecn+" "+AorP+" "+nday+"/"+nmonth+"/"+nyear; 
	
	setTimeout('startclock()',1000);

} 

function makeSubmit() {
	document.formRegistro.submit();
	return null;
}
