function M_OpenWindow(newUrl,winName,theParam)
{
window.open (newUrl,winName,theParam);
}

function M_OpenWindowNoParam(newUrl,winName)
{
window.open (newUrl, winName, 'left=150, top=280, width=480, height=265, toolbar=no, systemMenu=no, location=no, menubar=no, status=no ,resizable=yes ,scrollbars=yes');
}

function M_close(){
window.close();
}

function doZoom(size){
 document.getElementById('zoom').style.fontSize=size+'px'
}

			function InputValidate(frm)
			{
				if(frm.schoolname.value.length<1)
				{
					alert("报名学校不能为空！");
					return false;
				}
				if(frm.banci.value.length<1)
				{
					alert("报名班次不能为空！");
					return false;
				}
				
				if(frm.username.value.length<1)
				{
					alert("您的姓名是必填项！");
					return false;
				}
				if(frm.Total.value.length<1)
				{
					alert("报名人数是必填项！");
					return false;
				}
				if(frm.Tuition.value.length<1)
				{
					alert("学费是必填项！");
					return false;
				}

				
				if(frm.tel.value.length<1)
				{
					alert("您的电话号码必填！");
					return false;
				}
				if(frm.email.value.length<1)
				{
					alert("您的email必须填写！");
					return false;
				}
				if(frm.address.value.length<1)
				{
					alert("您的通信地址呢？");
					return false;
				}
				return true;
			}