﻿function clearinput(e)
{

    
    if(e=='Your First Name')
    {
        document.aspnetForm.ctl00$contPage$txtFirstName.value='';
    }
    else if(e=='Your Last Name')
    {
        document.aspnetForm.ctl00$contPage$txtLastName.value='';
    }
    else if(e=='Your Email Address')
    {
        document.aspnetForm.ctl00$contPage$txtEmail.value='';
    }
    else if(e=='Your Company Name')
    {
        document.aspnetForm.ctl00$contPage$txtCompanyName.value='';
    }
    else if(e=='Address of Company')
    {
        document.aspnetForm.ctl00$contPage$txtCompanyAddress.value='';
    }
    else if(e=='Land Line Number')
    {
        document.aspnetForm.ctl00$contPage$txtCompanyContactNo.value='';
    }
    else if(e=='Detail about the product you would like to sell')
    {
        document.aspnetForm.ctl00$contPage$txtDescription.value='';
    }
    else if(e=='Company Website Address')
    {
        document.aspnetForm.ctl00$contPage$txtUrl.value='';
    }
    else if(e=='Details regarding the product your company is dealing in')
    {
        document.aspnetForm.ctl00$contPage$txtPartnerDetail.value='';
    }
    
}


