function mOvr(src,clrOver) {
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = clrOver;
 }
}
function mOut(src,clrIn) {
 if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = clrIn;
 }
}
function mClk(src) {
 if(event.srcElement.tagName=='TD'){
  src.children.tags('A')[0].click();
 }
}
function textbox(nombre, tamanio, valor)
{
if (navigator.appName.substring(0,1)=="M")
{	document.write('<input onfocus=this.value="" style="font-family: Tahoma,Verdana,Arial,Helvetica; font-size: 8pt" type=text name='+ nombre +' size=' + tamanio + ' value=\"' + valor +'\">');
} else	{
document.write('<input onfocus=this.value="" type=text name='+ nombre +' size=' + (tamanio-3) + 'value=\"' + valor +'\">');
}
}

function textboxpass(nombre, tamanio, valor)
{
if (navigator.appName.substring(0,1)=="M")
{	document.write('<font face="Tahoma,Verdana,Arial,Helvetica" size="1"><input style="font-family: Tahoma,Verdana,Arial,Helvetica; font-size: 8pt" type=password name='+ nombre +' size=' + tamanio +' value=\"' + valor +'\">');
} else	{
document.write('<input type=password name='+ nombre +' size=' + (tamanio-3) + 'value=\"' + valor +'\">');
}
}
