<!--
function check_orders(tf){
	if(tf.product.value=="Web Hosting Solution"){
		if(tf.domain.value==""){
			alert("Please Enter Domain Name");
			tf.domain.focus();
			return false;
		}
	}

	if(tf.fullname.value==""){
		alert("Please enter your Fullname");
		tf.fullname.focus();
		return false;
	}
	if(tf.contactno.value==""){
		alert("Please enter your Contact number");
		tf.contactno.focus();
		return false;
	}
	if(tf.email.value==""){
		alert("Please enter you Email Address");
		tf.email.focus();
		return false;
	}else{
	   if (tf.email.value.indexOf ('@',0) == -1 ||	tf.email.value.indexOf ('.',0) == -1) {
			alert ("Invalid email address, please check your entry");
			tf.email.select();
			tf.email.focus();
			return false;
		}
	}
	if(tf.message.value==""){
		alert("Please enter your Message");
		tf.message.focus();
		return false;
	}
	
}

//-->
