///////////////////////////////////////////////////////////////////////
//ウェブページをGoogleで翻訳するスクリプト(和英)
//2005年9月 by stabucky
//http://stabucky.blogzine.jp/
//http://tool.stabucky.com/
//
//ウェブページを翻訳します。
//Googleの翻訳を使用します。
//
//履歴
//20060111公開
//20050926作成
//
///////////////////////////////////////////////////////////////////////

var pnir=new ActiveXObject("Sleipnir.API");
var id=pnir.GetDocumentID(pnir.ActiveIndex);
var document=pnir.GetDocumentObject(id);
var window=pnir.GetWindowObject(id);

var url,motourl;
var flg;

if(document==null){
	pnir.MessageBox("Documentオブジェクトを作成できません");
}else{
	motourl=document.location.href;
	motourl=motourl.replace(/\//,"%2F");
	motourl=motourl.replace(/\:/,"%3A");
	flg="ja%7Cen";
	url="http://translate.google.com/translate?u="
		+motourl+"&langpair="
		+flg+"&hl=ja&c2coff=1&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools";

	pnir.NewWindow(url,true);

	document=null;
}
pnir=null;

