function live1care(url,newwin,coords) {
window.open(url,newwin,coords);
}

function HideContent(d) {
document.getElementById(d).style.display = "none";
}

function ShowContent(d,newLeft,newTop)
{
var oTarget = document.getElementById(d);
    oTarget.style.left = newLeft;
    oTarget.style.top = newTop;
    oTarget.style.display = "block";
}
