var vdiv = document.createElement("DIV")
vdiv.id = "valiDiv"
vdiv.className = "valiDiv"
vdiv.innerHTML = "<table width=100% cellspacing=0 cellpadding=0 border=0><tr><td style='width:15px;height:16px; font-size:1px' background=/core/images/angular.gif>&nbsp;</td><td rowspan=3 style='border-top:red solid 1px; border-right:red solid 1px; border-bottom:red solid 1px; background:white; font-family:arial; font-size:11px; padding:3px' ><span id=valiMsg>&nbsp;</span></td></tr><tr><td  id='theTD' style='font-size:1px;border-right:red solid 1px; padding:0px'>&nbsp;</td></tr></table>"
vdiv.style.position = "absolute"
document.body.appendChild(vdiv)


function valiMessage(tp,lf,msg){
document.getElementById("theTD").style.height="0px"
document.getElementById("valiDiv").style.top = tp + "px"
document.getElementById("valiDiv").style.left = lf + "px"
document.getElementById("valiDiv").style.width = "175px"
document.getElementById("valiDiv").style.display = "block"
document.getElementById("valiMsg").innerHTML = msg

var b = document.getElementById("valiDiv").offsetHeight - 16
if (b < 11)
{
	b = 6
}

document.getElementById("theTD").style.height=b + "px"


}


function hid_valiDiv(){
document.getElementById("valiDiv").style.display = "none"
}
