function bluring() { try{ if(event.srcElement.tagName=='A'||event.srcElement.tagName=='IMG') { document.body.focus(); } }catch( e ) { } } try{ document.onfocusin=bluring; }catch( e ) { } var rurl = location.href; var purl = getUrl(rurl); function getUrl(url_str) { var real_url; if (url_str.indexOf('/') > 0) { real_url = url_str.split('/'); real_url = real_url[0]+'//'+real_url[2]+'/'+real_url[3]+'/'; } return real_url; } function goLocate(go_url) { document.location = purl + go_url; } function popup(){ var width ="386"; var height="217"; LeftPosition=(screen.width)?(screen.width-width)/2:100; TopPosition=(screen.height)?(screen.height-height)/2:100; url = "/designby0002/img/comm/popup.abc" winOpts = "scrollbars=no,toolbar=no,location=no,directories=no,width="+width+",height="+height+",resizeble=no,left="+LeftPosition+",top="+TopPosition; var obj=window.open(url,'popup',winOpts); }