function submitRDC(listitem)
{

document.formTime.submitTime.value=document.formTime.hoursTime.
value.replace(/ /g,"")
	document.formTime.submit();
}
  



function resizeWindow()
  {
  window.resizeTo(820,850)
  }

  function rdcFormData(fItem , eItem)
{

document.forms[fItem].elements[eItem].value=document.forms[fItem].elements[eItem].
value.replace(/ /g,"")
document.forms[fItem].submit();
	
}
  
function rdcFormData2(fItem , eItem)
{
	
	alert('hey'  );
}


function submitClock(listitem)
{

document.clockTime.starter.value=document.clockTime.starter.
value.replace(/ /g,"")
	document.clockTime.submit();
}


function listeMeForms()
{
var msg="Form Index 0: " +document.forms[0].name; 
msg 	+="\nForm Index 1: " +document.forms[1].name; 

alert (  msg );

}



function swapBK(divName,thiscolor,thisSize,thisStyle)
{
var obj= document.getElementById(divName);
obj.style.borderColor=(thiscolor);
obj.style.borderWidth=(thisSize);
obj.style.borderStyle=(thisStyle);
}


function hhInput(idName, thisStyle)
{
var obj=document.getElementById(idName);
obj.className=(thisStyle);
}


function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=820,height=600,scrollbars=yes');
return false;
}

