	function check_form(f){
		var m = f.m.value;
	  if(m=="" || m=="请输入11位手机号码")	{
			alert("请输入手机号码！");
			f.m.focus();
			return false;
		}
		/*
		re = /1[3|5][0-9]{9}/;
	  if(m.length<11 || !re.test(m))	{
			alert("请输入11位手机号码！");
			f.m.focus();
			return false;
		}
		*/
			//return true;
	}

	function copy_to_clip(objid){
		var obj = window.clipboardData;
  	var str = document.getElementById('t'+objid).innerText;
  	str += '\n' + document.getElementById('n'+objid).innerText;
  	//window.top.parent.location.href;
		obj.setData('Text',str);
		alert('你已经成功复制本段内容，好东西当然要发给QQ/MSN好友分享了');
	}

function rec_copy()
{
	var obj = window.clipboardData;
  var str = '查手机网：'+window.top.parent.location.href;
	obj.setData('Text',str);
	alert('你已经成功复制了本站链接，好东西当然要发给QQ/MSN好友分享了');
}

function chk(t){
	if(t.value=='请输入11位手机号码'){t.value='';t.style.color='#000000';}
}

function addfavorite()
{
  if (document.all)
  {
     window.external.addFavorite('http://www.chashouji.com','查手机网');
  }
  else if (window.sidebar)
  {
     window.sidebar.addPanel('查手机网', 'http://www.chashouji.com', "");
  }
}

