function check(){	var checkStatus=document.getElementById('status').value;	var checkFromName=document.getElementById('fromName').value;	var checkFromEmail=document.getElementById('fromEmail').value;	var checkMessage=document.getElementById('message').value;	if(checkStatus=='N'){		alert("Please complete the required fields");		return false;	} else {		}	if(checkFromName=='' || checkFromEmail=='' || checkMessage==''){		alert("Please complete the required fields");		return false;	}else{		return true;	}	}