function ValidateBlogPost()
	{
		if(getVal('fullname')=='' || getVal('fullname')=='address' || getVal('message')=='message' || !emailverify(getVal('email')))
			{
				alert("Some of your field/s are empty or invalid data");
				return false;
			}
	}
	


function ValidateSupport()
	{
		if(getVal('type')=='none')
			{
				alert('Please select support type')
				document.getElementById('type').focus();
				return false;
			}
			
		
		if(getVal('fullname')=='')
			{
				alert('Please enter the fullname')
				document.getElementById('fullname').focus();
				return false;
			}
			
			
		if(getVal('company')=='')
			{
				alert('Please enter the company name')
				document.getElementById('company').focus();
				return false;
			}
			
			
		if(getVal('address')=='')
			{
				alert('Please enter the address')
				document.getElementById('address').focus();
				return false;
			}
			
			
	
			
			
		if(!emailverify(getVal('email')))
			{
				alert('Invalid email')
				document.getElementById('email').focus();
				return false;
			}
			
		if(getVal('project')=='')
			{
				alert('Please enter the project')
				document.getElementById('project').focus();
				return false;
			}
			
			
		if(getVal('abt')=='')
			{
				alert('Please enter the Support about')
				document.getElementById('abt').focus();
				return false;
			}
		
		
	}
