function clearMe(formfield){
	if (formfield.defaultValue==formfield.value)
	formfield.value = ""
}
function showTabAjax(x, allTabsCount) {
    j = 0;
    for (var i = 0; i < allTabsCount; i++) {
        if (i < 10) {j = "0" + (i * 2);}
        else {j = (i * 2);}
        if (i == x) {document.getElementById("dlSections_ctl" + j + "_lbtnTitle").className = "selected";}
        else {document.getElementById("dlSections_ctl" + j + "_lbtnTitle").className = "";}}}

function showTab(x, allTabsCount) {
    for (var i = 1; i < (allTabsCount + 1); i++) {
        var div = document.getElementById('Tab' + i);
        if (i == x) {
            div.style.display = 'block';
            document.getElementById("t" + i).className = "selected";
        }
        else {
            div.style.display = 'none';
            document.getElementById("t" + i).className = "";
        } } }