﻿// JScript File

function validation()
{

	if(CheckForNull('aspnetForm',' Name','ctl00_ConectPlace_txtName')==false) return false;
    if(CheckForNull('aspnetForm','E-mail','ctl00_ConectPlace_txtMail')==false) return false;        
    if(CheckEmail('aspnetForm','ctl00_ConectPlace_txtMail')==false) return false;
} 

function request()
{
    if(CheckForNull('aspnetForm',' Name','ctl00_ConectPlace_txtName')==false) return false;
    if(CheckForNull('aspnetForm','E-mail','ctl00_ConectPlace_txtMail')==false) return false;        
    if(CheckEmail('aspnetForm','ctl00_ConectPlace_txtMail')==false) return false;
    if(document.aspnetForm.ctl00_ConectPlace_ddlptype.value=='0')
    {
    alert('Please Select Project Type');
    return false;
    }
}
