function getHelloW(){
   var now=(new Date()).getHours();
   if(now>0&&now<=6){
    document.write("午夜好，");
   }else if(now>6&&now<=11){
    document.write("早上好，");
   }else if(now>11&&now<=14){
    document.write("中午好，");
   }else if(now>14&&now<=18){
    document.write("下午好，");
   }else{
    document.write("晚上好，");
   }
}


document.body.oncopy=function(){
	event.returnValue=false;
	var d=document.selection.createRange().text;
	window.clipboardData.setData('Text',d+"\r\n\r\n转自中国名企招聘网："+document.location.href);
}

