function input_error( tag, error){
   if(error == true){ 
       tag.style.backgroundColor="#FABA8F";
       tag.style.border="solid red 1px";
       tag.focus();
       return true; 
   }else{
       tag.style.backgroundColor="#F0F2F4";
       tag.style.border="solid #606060 1px";
       return false; 
   }//end else
}

function handelUserInput( tag, pram ){
    document.getElementById(tag).style.display = pram; 
}//end function

function $ID( id ){
    return document.getElementById(id);
}//end function

function merror(tag){
    tag.style.backgroundColor="#FABA8F";
    tag.style.border="solid red 1px"; 
    tag.focus();
}//end function

function mokay(tag){
    tag.style.backgroundColor="#F0F2F4";
    tag.style.border="solid #606060 1px";
}//end function