﻿// JScript File


function SetTextOnFocus(txtname)
 {        
    if(txtname.value == 'Enter your Name'){
        txtname.value = '';
    }
}
function SetTextOnBlur(txtname){        
    if(txtname.value == ''){
        txtname.value = 'Enter your Name';
    }
}


function SetTextOnFocus1(txtemail)
 {        
    if(txtemail.value == 'Enter your Email ID'){
        txtemail.value = '';
    }
}
function SetTextOnBlur1(txtemail){        
    if(txtemail.value == ''){
        txtemail.value = 'Enter your Email ID';
    }
}

function SetTextOnFocus2(txtmsg)
 {        
    if(txtmsg.value == 'Enter Message Here'){
        txtmsg.value = '';
    }
}
function SetTextOnBlur2(txtmsg){        
    if(txtmsg.value == ''){
        txtmsg.value = 'Enter Message Here';
    }
}



function SetTextmailOnFocus(txtmail)
 {        
    if(txtmail.value == '--Enter your Email Id--'){
        txtmail.value = '';
    }
}
function SetTextmailOnBlur(txtmail){        
    if(txtmail.value == ''){
        txtmail.value = '--Enter your Email Id--';
    }
}
