function check1(th){

//if(form1.Nclassid.value==""){
//	alert('请选择城市！');
//	form1.Nclassid.focus();
//	return false;
//}

if(th.StartTime.value=="" || th.StartTime.value=="入住日期"){
	alert('请选择入住日期！');
	th.StartTime.focus();
	return false;
}
if(th.EndTime.value=="" || th.EndTime.value=="离住日期"){
	alert('请选择离住日期！');
	th.EndTime.focus();
	return false;
}
if(th.EndTime.value<th.StartTime.value){
	alert('离住日期必须后于入住日期！');
	th.EndTime.focus();
	return false;
}
}
