<!--//客服联系方式
document.writeln("<h2>客服联系方式<\/h2>");
document.writeln("<div class=\"contactBox\">");
document.writeln("	<a href=\"http:\/\/wpa.qq.com\/msgrd?V=1&Uin=82839642&Site=www.code168.net&Menu=yes\" target=\"blank\" title=\"点击这里给我发消息\"><img src=\"\/Template\/blue\/images\/qq_online.gif\" alt=\"点击这里给我发消息\" height=\"16\" border=\"0\" align=\"absmiddle\" \/>[业务咨询82839642]<\/a><br \/>");
document.writeln("	<a href=\"http:\/\/wpa.qq.com\/msgrd?V=1&Uin=115061884&Site=www.code168.net&Menu=yes\" target=\"blank\" title=\"点击这里给我发消息\"><img src=\"\/Template\/blue\/images\/qq_online.gif\" alt=\"点击这里给我发消息\" height=\"16\" border=\"0\" align=\"absmiddle\" \/>[技术咨询115061884]<\/a><br \/>");
document.writeln("	<a href=\"#\" onclick=\"document.getElementById('sendSMSBox').style.display='block';return false;\" title=\"点击这里给我发送手机短信\"><img src=\"\/Template\/blue\/images\/tel.gif\" height=\"20\" border=\"0\" align=\"absmiddle\" alt=\"点击这里给我发送手机短信\" \/>13631579250</a><br \/>");
//发送手机短信表单开始
document.writeln("<div id=\"sendSMSBox\">");
document.writeln("<h2>");
document.writeln("<img src=\"\/Template\/blue\/images\/close_icon.gif\" alt=\"关闭\" border=\"0\" onclick=\"document.getElementById(\'sendSMSBox\').style.display=\'none\';\" align=\"right\" width=\"14\" height=\"14\" \/>");
document.writeln("手机短信留言<\/h2>");
document.writeln("<form id=\"sendSMSForm\" name=\"sendSMSForm\" method=\"post\" action=\"\/sendSMS.asp\" onsubmit=\"return chkSMSForm();\">");
document.writeln("  手机号码：<span class=\"red\">留下手机方便回复，不会扣费</span>");
document.writeln("  <br \/>");
document.writeln("  <input name=\"sms_from\" type=\"text\" id=\"sms_from\" maxlength=\"12\" style=\"width:96%;\" \/>");
document.writeln("  <br \/>");
document.writeln("  短信内容：<br \/>");
document.writeln("  <textarea name=\"sms_message\" cols=\"24\" id=\"sms_message\" style=\"width:96%; height:32px;\"><\/textarea>");
document.writeln("  <input type=\"submit\" name=\"Submit\" value=\"= 发送手机短信 =\" style=\"margin-top:5px;\" \/>");
document.writeln("<\/form>");
document.writeln("<\/div>")
//发送手机短信表单结束
document.writeln("<br \/>");
document.writeln("	<strong>工作时间：<\/strong><br \/>");
document.writeln("	9:00AM—18:00PM<br \/>");
document.writeln("	节假日不休息");
document.writeln("<\/div>");


function chkSMSForm(){
	var o1=document.getElementById("sms_from");
	var o2=document.getElementById("sms_message");
	if(o1.value==""){
		alert("手机号码不能为空！为方便我们与您联系，请留下您的手机号码！");
		o1.focus();
		return false;
	}

	if(isNaN(o1.value)){
		alert("手机号码格式不正确，只能为数字！为方便我们与您联系，请认真填写！");
		o1.focus();
		return false;
	}

	if(o2.value==""){
		alert("短信内容不能为空！");
		o2.focus();
		return false;
	}

	if(o2.value.length<5){
		alert("短信内容不能少于5个字符！");
		o2.focus();
		return false;
	}

	if(o2.value.length>140){
		alert("短信内容不要超过140个字符！");
		o2.value=o2.value.substr(0,140);
		o2.focus();
		return false;
	}

	return true;
}
//-->