function CD_Form() 
{
    var errors='',nm;
    if (document.form1.firstname.value =='') errors+='- Please insert your first name!\n\n';
    if (document.form1.lastname.value =='') errors+='- Please insert your last name!\n\n';
	if (document.form1.email.value =='') errors+='- Please insert your Email address!\n\n';

    if (!document.form1.agree.checked == true ) errors+='- Please confirm: All of information above are correct\n  and complete and that you have reviewed and\n  agreed to CK Villas cancelation terms!\n';
	
	
	if (errors) alert('Ups, required fields missing:\n\n'+errors);
	document.MM_returnValue = (errors == '');
}
//-->
