<!-- // Hide script from old browsers.

function CheckData() {
	var problem = 'No';
	if (document.url_form.name.value.length <= 0 ) {
		alert ("Enter your name");
		document.url_form.name.value = "******* Name?";
		document.url_form.name.focus();
		problem = 'Yes';
	}
	if (document.url_form.tele.value.length <= 0 ) {
		alert ("Enter your Telephone Number");
		document.url_form.tele.value = "******* Number?";
		document.url_form.tele.focus();
		problem = 'Yes';
	}
		if (document.url_form.email.value.length <= 0 ) {
		alert ("Enter your Email");
		document.url_form.email.value = "******* Email?";
		document.url_form.email.focus();
		problem = 'Yes';
	}
	if (document.url_form.suite.value.length <= 0 ) {
		alert ("Enter the suite you are interested in");
		document.url_form.suite.value = "******* Suite Name?";
		document.url_form.suite.focus();
		problem = 'Yes';
	}
	if (document.url_form.fabric.value.length <= 0 ) {
		alert ("Enter the Fabric you require");
		document.url_form.fabric.value = "******* Fabric Name?";
		document.url_form.fabric.focus();
		problem = 'Yes';
	}
	if (document.url_form.req.value.length <= 0 ) {
		alert ("Enter your requirements");
		document.url_form.req.value = "******* I require...?";
		document.url_form.req.focus();
		problem = 'Yes';
	}	
	if (problem == 'No') {
		return true;
	} else {
		return false;
	}
}

//-->
