0){
if(dict_onmove == 1){
dict_moving = 2;
dict_startx = dict_x;
dict_starty = dict_y;
}else if(dict_x < cx || dict_x > (cx + 240) || dict_y < cy || (!dict_onlayer && dict_y > (cy + 100) ) ){
dictClose();
}else{
dict_moving = 1;
}
}
}
function dictQuery(e) {
if(dict_moving == 1){
if (dict_is_ie) {
window.event.cancelBubble = true;
window.event.returnValue = false;
}else{
e.preventDefault();
}
return false;
}
if(dict_moving == 2) {
dict_cx = dict_x;
dict_cy = dict_y;
dict_moving = 1;
return false;
}
dictGetPos(e);
if (!dict_enable) return true;
var word = dictGetSel();
if(dict_is_ie) word=word.replace(/^\s*|\s*$/g,"");
if(word == "" || word.length > 15 || word == dict_old_word) return true;
dictShow(word);
}
function dictDisplay(){
var dx=262;
var dy=264;
dict_y += 8;
dict_x += 16;
if(dict_is_ie){
if (document.documentElement.offsetHeight && document.body.scrollTop+document.documentElement.scrollTop+document.documentElement.offsetHeight - dict_y < dy){
dict_y = document.body.scrollTop+document.documentElement.scrollTop + document.documentElement.offsetHeight - dy;
dict_x += 14;
}
if (document.documentElement.offsetWidth && document.body.scrollLeft+document.documentElement.scrollLeft+document.documentElement.offsetWidth - dict_x < dx){
dict_x = document.body.scrollLeft+document.documentElement.scrollLeft + document.documentElement.offsetWidth - dx;
}
}else{
dx-=1;
dy+=11;
if (self.innerHeight && document.body.scrollTop+document.documentElement.scrollTop + self.innerHeight - dict_y < dy) {
dict_y = document.body.scrollTop+document.documentElement.scrollTop + self.innerHeight - dy;
dict_x += 14;
}
if (self.innerWidth && document.body.scrollLeft+document.documentElement.scrollLeft + self.innerWidth - dict_x < dx) {
dict_x = document.body.scrollLeft+document.documentElement.scrollLeft + self.innerWidth - dx;
}
}
dict_cx = dict_x;
dict_cy = dict_y;
dict_startx = dict_x;
dict_starty = dict_y;
dict_layer.style.left = dict_cx+'px';
dict_layer.style.top = dict_cy+'px';
dict_layer.style.display="";
dict_moving = 1;
}
function dictShow(word){
dictDisplay();
try{
dict_iframe.src='about:blank';
iframeWin = window.frames.dictFrame;
iframeWin.document.open();
iframeWin.document.write('
搜索'+word+' :
');
iframeWin.document.close();
}catch(x){
}
var u=dict_host+'hc_sou.asp?';
if(dict_partner) u += 'id='+dict_partner+'&';
u += 'q='+word;
dict_iframe.src=u;
//alert(u);
if(dict_is_ie) dict_old_word = word;
}
function dictAdd(word){
dictDisplay();
try{
dict_iframe.src='about:blank';
iframeWin = window.frames.dictFrame;
iframeWin.document.open();
iframeWin.document.write('
添加生词本: '+word+'
生词上传中...
请稍候...');
iframeWin.document.close();
}catch(x){
}
dict_old_word = '';
dict_iframe.src='http://www.fsou.com/huaci/hc_search.asp?page=1&product_name='+word;
}
function dictMove(e){
if(dict_moving==2) {
dictGetPos(e);
dict_x = dict_x-dict_startx+dict_cx;
dict_y = dict_y-dict_starty+dict_cy;
if (document.documentElement.scrollWidth - dict_x < 262) {
dict_x = document.documentElement.scrollWidth - 262;
}
dict_layer.style.left = dict_x+'px';
dict_layer.style.top = dict_y+'px';
}
}
function dictClose() {
try
{
dict_moving = 0;
dict_onmove = 0;
dict_onlayer = 0;
dict_layer.style.display="none";
if(window.sf) sf();
}
catch (x)
{
}
}
function dictWCookie(name,value)
{
var date=new Date();
var now=date.getTime();
date.setTime(now+365*24*60*60*1000);
document.cookie=name+"="+value+"; path=/; expires="+date.toGMTString();
}
function dictRCookie(name)
{
var cookie=String(document.cookie);
var pos=cookie.indexOf(name+"=");
if(pos!=-1){
var end=cookie.indexOf("; ",pos);
return cookie.substring(pos+name.length+1,end==-1?cookie.length:end);
}
return "";
}
function dictEnable(){
if (dict_enable){
dict_enable = false;
dictWCookie("dictstate", '1');
}else{
dict_enable = true;
dictWCookie("dictstate", '0');
}
dictUpdateStatus();
}
function dictUpdateStatus(){
var el = document.getElementById('dict_status');
if(el){
el.innerHTML = dictStatus();
}
}
function dictStatus(){
if (dict_enable){
return '[
法搜帮助已
法搜帮助]';
}else{
return '[
法搜帮助已
法搜帮助]';
}
}
dictInit();