function telemail(){
	this.windowWidth = 640;
	this.windowHeight = 620;
	this.url = "https://telemail.jp/";
	this.show = function(parames){
		var url = this.url;
		var openerFlg = false;
		if ( parames != "" ){ url += "?" + parames;}
		if (parent != undefined && parent.opener != undefined ){ openerFlg = true; }
		if (openerFlg)
		{
			newwin = parent.window.open(url, "_blank", "alwaysRaised=yes,menubar=no,resizable=yes,status=yes,scrollbars=yes,width="+this.windowWidth+",height="+this.windowHeight); 
		} else {
			newwin = window.open(url, "_blank", "alwaysRaised=yes,menubar=no,resizable=yes,status=yes,scrollbars=yes,width="+this.windowWidth+",height="+this.windowHeight);
		}

		if(newwin){
			newwin.focus();
			return;
		}else return;
	};
}

