function checkQQ(){
var soicq=/^\d{6,8}$/;
if (document.theForm.OICQ.value!=""){
if (!soicq.test(document.theForm.OICQ.value)){
alert('OICQ填写有误,应为 6-8 位的数字');
document.theform.oicq.focus();
document.theform.oicq.select();
return false;        
}
}
}