function Validate_Registration()
{
	// check name
	if(document.formregister.name.value == "" || document.formregister.name.value == "Name")
	{
		document.getElementById('name_alert').style.display = 'block';
		document.getElementById('whitespace').style.display = 'none';
		
		return false;
	}	
	else{
		document.getElementById('name_alert').style.display = 'none';
		document.getElementById('whitespace').style.display = 'block';
	}
	if (document.formregister.name.value.match(/^[a-zA-Z ]+$/)){
		document.getElementById('name_alert').style.display = 'none';
		
	}
	else{
		document.getElementById('name_alert').style.display = 'block';
		return false;
	}
	// check Designation
	if(document.formregister.designation.value == "" || document.formregister.designation.value == "Designation")
	{
		document.getElementById('designation_alert').style.display = 'block';
		return false;
	}	
	else{
		document.getElementById('designation_alert').style.display = 'none';
	}
		// check company
	if(document.formregister.company.value == "" || document.formregister.company.value == "Company")
	{
		document.getElementById('company_alert').style.display = 'block';
		return false;
	}	
	else{
		document.getElementById('company_alert').style.display = 'none';
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.formregister.email.value;
	if(regex.test(email) == false || email == "Email" || email == "" )
	{
		document.getElementById('email_alert').style.display = 'block';
		return false;
	}
	else{
		document.getElementById('email_alert').style.display = 'none';
	}
	
	// check phone
	if(document.formregister.mobile.value == "" || document.formregister.mobile.value == "Mobile Number" || document.formregister.mobile.value.length <= 9)
	{
		document.getElementById('phone_alert').style.display = 'block';
		return false;
	}
	else
	{
		document.getElementById('phone_alert').style.display = 'none';
	}
	
	if (document.formregister.mobile.value.match(/^[0-9]+$/))
	{
		document.getElementById('phone_alert').style.display = 'none';
	}
	else
	{
		document.getElementById('phone_alert').style.display = 'block';
		return false;
	}
}

function Validate_ALAForm()
{	
	if(document.ALAform.ALA_name.value == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
        document.getElementById('ALA_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_name').style.backgroundColor = '';        
	}

	if(document.ALAform.ALA_designation.value == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
                document.getElementById('ALA_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_designation').style.backgroundColor = '';        
	}
	if(document.ALAform.ALA_company.value == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
        document.getElementById('ALA_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_company').style.backgroundColor = '';        
	}
	
	if(document.ALAform.ALA_email.value == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
        document.getElementById('ALA_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.ALAform.ALA_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
		document.getElementById('ALA_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_email').style.backgroundColor = '';
	}
	
	if(document.ALAform.ALA_phone.value == "" )
	{
		document.getElementById('ALAerrorbox').style.display = 'block';
        document.getElementById('ALA_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ALAerrorbox').style.display = 'none';
		document.getElementById('ALA_phone').style.backgroundColor = '';        
	}
}

function Validate_ANIMAForm()
{	
	if(document.ANIMAform.ANIMA_name.value == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
        document.getElementById('ANIMA_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_name').style.backgroundColor = '';        
	}

	if(document.ANIMAform.ANIMA_designation.value == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
                document.getElementById('ANIMA_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_designation').style.backgroundColor = '';        
	}
	if(document.ANIMAform.ANIMA_company.value == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
        document.getElementById('ANIMA_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_company').style.backgroundColor = '';        
	}
	
	if(document.ANIMAform.ANIMA_email.value == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
        document.getElementById('ANIMA_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.ANIMAform.ANIMA_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
		document.getElementById('ANIMA_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_email').style.backgroundColor = '';
	}
	
	if(document.ANIMAform.ANIMA_phone.value == "" )
	{
		document.getElementById('ANIMAerrorbox').style.display = 'block';
        document.getElementById('ANIMA_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ANIMAerrorbox').style.display = 'none';
		document.getElementById('ANIMA_phone').style.backgroundColor = '';        
	}
}

function Validate_ASEBIOForm()
{	
	if(document.ASEBIOform.ASEBIO_name.value == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
        document.getElementById('ASEBIO_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_name').style.backgroundColor = '';        
	}

	if(document.ASEBIOform.ASEBIO_designation.value == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
                document.getElementById('ASEBIO_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_designation').style.backgroundColor = '';        
	}
	if(document.ASEBIOform.ASEBIO_company.value == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
        document.getElementById('ASEBIO_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_company').style.backgroundColor = '';        
	}
	
	if(document.ASEBIOform.ASEBIO_email.value == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
        document.getElementById('ASEBIO_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.ASEBIOform.ASEBIO_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
		document.getElementById('ASEBIO_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_email').style.backgroundColor = '';
	}
	
	if(document.ASEBIOform.ASEBIO_phone.value == "" )
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'block';
        document.getElementById('ASEBIO_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('ASEBIOerrorbox').style.display = 'none';
		document.getElementById('ASEBIO_phone').style.backgroundColor = '';        
	}
}


function Validate_JAPANForm()
{	
	if(document.JAPANform.JAPAN_name.value == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
        document.getElementById('JAPAN_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_name').style.backgroundColor = '';        
	}

	if(document.JAPANform.JAPAN_designation.value == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
                document.getElementById('JAPAN_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_designation').style.backgroundColor = '';        
	}
	if(document.JAPANform.JAPAN_company.value == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
        document.getElementById('JAPAN_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_company').style.backgroundColor = '';        
	}
	
	if(document.JAPANform.JAPAN_email.value == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
        document.getElementById('JAPAN_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.JAPANform.JAPAN_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
		document.getElementById('JAPAN_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_email').style.backgroundColor = '';
	}
	
	if(document.JAPANform.JAPAN_phone.value == "" )
	{
		document.getElementById('JAPANerrorbox').style.display = 'block';
        document.getElementById('JAPAN_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('JAPANerrorbox').style.display = 'none';
		document.getElementById('JAPAN_phone').style.backgroundColor = '';        
	}
}




function Validate_CAPEForm()
{	
	if(document.CAPEform.CAPE_name.value == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
        document.getElementById('CAPE_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_name').style.backgroundColor = '';        
	}

	if(document.CAPEform.CAPE_designation.value == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
                document.getElementById('CAPE_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_designation').style.backgroundColor = '';        
	}
	if(document.CAPEform.CAPE_company.value == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
        document.getElementById('CAPE_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_company').style.backgroundColor = '';        
	}
	
	if(document.CAPEform.CAPE_email.value == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
        document.getElementById('CAPE_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.CAPEform.CAPE_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
		document.getElementById('CAPE_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_email').style.backgroundColor = '';
	}
	
	if(document.CAPEform.CAPE_phone.value == "" )
	{
		document.getElementById('CAPEerrorbox').style.display = 'block';
        document.getElementById('CAPE_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('CAPEerrorbox').style.display = 'none';
		document.getElementById('CAPE_phone').style.backgroundColor = '';        
	}
}

function Validate_GAMBICAForm()
{	
	if(document.GAMBICAform.GAMBICA_name.value == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
        document.getElementById('GAMBICA_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_name').style.backgroundColor = '';        
	}

	if(document.GAMBICAform.GAMBICA_designation.value == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
                document.getElementById('GAMBICA_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_designation').style.backgroundColor = '';        
	}
	if(document.GAMBICAform.GAMBICA_company.value == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
        document.getElementById('GAMBICA_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_company').style.backgroundColor = '';        
	}
	
	if(document.GAMBICAform.GAMBICA_email.value == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
        document.getElementById('GAMBICA_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.GAMBICAform.GAMBICA_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
		document.getElementById('GAMBICA_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_email').style.backgroundColor = '';
	}
	
	if(document.GAMBICAform.GAMBICA_phone.value == "" )
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'block';
        document.getElementById('GAMBICA_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GAMBICAerrorbox').style.display = 'none';
		document.getElementById('GAMBICA_phone').style.backgroundColor = '';        
	}
}

function Validate_GIFICForm()
{	
	if(document.GIFICform.GIFIC_name.value == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
        document.getElementById('GIFIC_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_name').style.backgroundColor = '';        
	}

	if(document.GIFICform.GIFIC_designation.value == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
                document.getElementById('GIFIC_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_designation').style.backgroundColor = '';        
	}
	if(document.GIFICform.GIFIC_company.value == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
        document.getElementById('GIFIC_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_company').style.backgroundColor = '';        
	}
	
	if(document.GIFICform.GIFIC_email.value == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
        document.getElementById('GIFIC_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.GIFICform.GIFIC_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
		document.getElementById('GIFIC_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_email').style.backgroundColor = '';
	}
	
	if(document.GIFICform.GIFIC_phone.value == "" )
	{
		document.getElementById('GIFICerrorbox').style.display = 'block';
        document.getElementById('GIFIC_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('GIFICerrorbox').style.display = 'none';
		document.getElementById('GIFIC_phone').style.backgroundColor = '';        
	}
}

function Validate_KOREABIOForm()
{	
	if(document.KOREABIOform.KOREABIO_name.value == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
        document.getElementById('KOREABIO_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_name').style.backgroundColor = '';        
	}

	if(document.KOREABIOform.KOREABIO_designation.value == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
                document.getElementById('KOREABIO_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_designation').style.backgroundColor = '';        
	}
	if(document.KOREABIOform.KOREABIO_company.value == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
        document.getElementById('KOREABIO_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_company').style.backgroundColor = '';        
	}
	
	if(document.KOREABIOform.KOREABIO_email.value == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
        document.getElementById('KOREABIO_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.KOREABIOform.KOREABIO_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
		document.getElementById('KOREABIO_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_email').style.backgroundColor = '';
	}
	
	if(document.KOREABIOform.KOREABIO_phone.value == "" )
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'block';
        document.getElementById('KOREABIO_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('KOREABIOerrorbox').style.display = 'none';
		document.getElementById('KOREABIO_phone').style.backgroundColor = '';        
	}
}

function Validate_VDMAForm()
{	
	if(document.VDMAform.VDMA_name.value == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
        document.getElementById('VDMA_name').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_name').style.backgroundColor = '';        
	}

	if(document.VDMAform.VDMA_designation.value == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
                document.getElementById('VDMA_designation').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_designation').style.backgroundColor = '';        
	}
	if(document.VDMAform.VDMA_company.value == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
        document.getElementById('VDMA_company').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_company').style.backgroundColor = '';        
	}
	
	if(document.VDMAform.VDMA_email.value == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
        document.getElementById('VDMA_email').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_email').style.backgroundColor = '';        
	}
	
	// check email
	var regex = /^[\w\.\-\+]+@([\w\-]+\.)+[a-zA-Z]+$/;
	var email = document.VDMAform.VDMA_email.value;
	if(regex.test(email) == false || email == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
		document.getElementById('VDMA_email').style.backgroundColor = '#fdafaf';
		return false;
	}
	else{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_email').style.backgroundColor = '';
	}
	
	if(document.VDMAform.VDMA_phone.value == "" )
	{
		document.getElementById('VDMAerrorbox').style.display = 'block';
        document.getElementById('VDMA_phone').style.backgroundColor = '#fdafaf';        
		return false;
	}
	else
	{
		document.getElementById('VDMAerrorbox').style.display = 'none';
		document.getElementById('VDMA_phone').style.backgroundColor = '';        
	}
}
