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 popup(a,b,c,d){
    window.open(a,b,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+c+",height="+d+",outerwidth="+(c+20)+",outerheight="+(d+20));
}

function BravoAlert(s){
    switch (s) 
{
    case ("dtips1.inc"):
 break;
    case ("dtips2.inc"):
 break;
    case ("dtips3.inc"):
 break;
    case ("etips1.inc"):
 break;
    case ("btips1.inc"):
 break;
    case ("btips2.inc"):
 break;
    case ("btips3.inc"):
 break;
    case ("btips4.inc"):
 break;
    case ("phone.inc"):
    }
}


if (!document.layers&&!document.all&&!document.getElementById)
event="test"
function showtip(current,e,text){

if (document.all||document.getElementById){
thetitle=text.split('<br>')
if (thetitle.length>1){
thetitles=''
for (i=0;i<thetitle.length;i++)
thetitles+=thetitle[i]
current.title=thetitles
}
else
current.title=text
}

else if (document.layers){
document.tooltip.document.write('<layer bgColor="white" style="border:1px solid black;font-size:12px;">'+text+'</layer>')
document.tooltip.document.close()
document.tooltip.left=e.pageX+5
document.tooltip.top=e.pageY+5
document.tooltip.visibility="show"
}
}
function hidetip(){
if (document.layers)
document.tooltip.visibility="hidden"
}


