﻿function SetFocus(emptyControlValue, controlID)
{
    
    if ($get(controlID).value==emptyControlValue)
        $get(controlID).value = "";
}

function LostFocus(emptyControlValue, controlID)
{
    if ($get(controlID).value=="")
        $get(controlID).value = emptyControlValue;    
}
