/*******************************************************************************
*      
*  Web Site  :  http://
*  Author    :  cyclops.co.,ltd. 
*  Modified  :  2006.8.16
*
*******************************************************************************/




/* mailto
*******************************************************************************/
function mail(tgt){
	if(!tgt || tgt=="info"){
		var s=",1)2`)M%5,\'$/N-3",r="";
		for(i=0;i<s.length;i++)r+=String.fromCharCode((s.charCodeAt(i)+28)%93+33);
	}
	eval("location.href=\"mailto:" + r + "\";");
}


/* open new window
*******************************************************************************/
function display(url,w,h) {
	mediumWin = window.open(url, 'display','resizable=1,scrollbars=auto,status=1,toolbar=1,width=' + w + ',height=' + h);
     	mediumWin.focus(); 
}

/* page Scroll To Top
*******************************************************************************/
var scrj = 1;
function toPageTop() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat")
      var scdist = document.body.parentNode.scrollTop;
   else
      var scdist = document.body.scrollTop;
   if(scrj<50 && scdist) {
      scdist = (scdist>2) ? Math.ceil(scdist*.2) : 1;
      scrj++;
      scrollBy(0,-scdist);
      setTimeout("toPageTop()",20);
   } else {
      scrollTo(0,0);
      scrj = 1;
   }
}