script.js.svn-base 5.61 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function newXMLHttpRequest() {
	var xmlreq = false;
	if (window.XMLHttpRequest) {
		// Create XMLHttpRequest object in non-Microsoft browsers
		xmlreq = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		// Create XMLHttpRequest via MS ActiveX
		try {
			// Try to create XMLHttpRequest in later versions
			// of Internet Explorer
			xmlreq = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e1) {
			// Failed to create required ActiveXObject
			try {
				// Try version supported by older versions
				// of Internet Explorer
				xmlreq = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e2) {
				// Unable to create an XMLHttpRequest with ActiveX
			}
		}
	}
	return xmlreq;
}

function wClose() {
	try {
		window.close();
	} finally {
		return	false;
	}
}

// 内容をコピーする。
function copyText(id){
    str = document.getElementById(id).innerHTML;

    str = str.replace(/&lt;/g, "<");
    str = str.replace(/&gt;/g, ">");

    isCopy = clipboardData.setData("text", str);
    if (isCopy) {
    	alert("リンクをコピーしました。");
    } else {
    	alert("クリップボードへアクセスが許可されてないためコピーできませんでした。");
    }
}

// 文言を指定して内容をコピーする。
// 内容をコピーする。
function copyTextMessage(id, Message){
    str = document.getElementById(id).innerHTML;

    str = str.replace(/&lt;/g, "<");
    str = str.replace(/&gt;/g, ">");

    isCopy = clipboardData.setData("text", str);
    if (isCopy) {
    	alert(Message);
    } else {
    	alert("クリップボードへアクセスが許可されてないためコピーできませんでした。");
    }
}

// 表示枠より大きい画像は縮小表示する。小さい画像はそのまま。
function resizeLogo(mg) {
	var ratio = 36.0 / mg.height;
	if (mg.width * ratio > 360) ratio = 360.0 / mg.width;
	if (ratio > 1.0) ratio = 1.0;
	var newWidth = mg.width * ratio;
	var newHeight = mg.height * ratio;

    mg.width = newWidth;
    mg.height = newHeight
}

//表示枠より大きい画像は縮小表示する。小さい画像はそのまま。
function resizeResourceThumbnail(mg) {
	var ratio = 45.0 / mg.height;
	if (mg.width * ratio > 36) ratio = 36.0 / mg.width;
	if (ratio > 1.0) ratio = 1.0;
	var newWidth = mg.width * ratio;
	var newHeight = mg.height * ratio;

    mg.width = newWidth;
    mg.height = newHeight
}
function resizeIcon(mg) {
	var ratio = 72.0 / mg.height;
	if (mg.width * ratio > 72) ratio = 72.0 / mg.width;
	if (ratio > 1.0) ratio = 1.0;
	var newWidth = mg.width * ratio;
	var newHeight = mg.height * ratio;

    mg.width = newWidth;
    mg.height = newHeight
}
function resizeThumbnail(obj) {
	var ratio = 0.0;
	var newWidth = 0.0;
	var newHeight = 0.0;
	var modifiedFlg = false;

	// 基準高さより大きい場合
	if (obj.height > 92) {
		ratio = obj.height / 92;
		newWidth = obj.width / ratio;
		if (newWidth <= 130) {
			obj.width = newWidth;
			obj.height = 92;
			modifiedFlg = true;
		}
	} else {
		ratio = 92 / obj.height;
		newWidth = obj.width * ratio;
		if (newWidth <= 130) {
			obj.width = newWidth;
			obj.height = 92;
			modifiedFlg = true;
		}
	}

	// まだイメージの幅・縦を修正しなかった場合
	if (!modifiedFlg) {
		obj.width = 130;
		obj.height = 92;
	}

	// 画像の活性化
	obj.style.visibility = "visible";
}

function resizeContentIcon(obj) {
	var ratio = 0.0;
	var newWidth = 0.0;
	var newHeight = 0.0;
	var modifiedFlg = false;

	// 基準高さより大きい場合
	if (obj.height > 72) {
		ratio = obj.height / 72;
		newWidth = obj.width / ratio;
		if (newWidth <= 72) {
			obj.width = newWidth;
			obj.height = 72;
			modifiedFlg = true;
		}
	} else {
		ratio = 72 / obj.height;
		newWidth = obj.width * ratio;
		if (newWidth <= 72) {
			obj.width = newWidth;
			obj.height = 72;
			modifiedFlg = true;
		}
	}

	// まだイメージの幅・縦を修正しなかった場合
	if (!modifiedFlg) {
		obj.width = 72;
		obj.height = 72;
	}

	// 画像の活性化
	obj.style.visibility = "visible";
}

function trim(str) {
	return str.replace(/(^\s+)|(\s+$)/g, "");
}

//body内の実際に表示される部分(スクロールされる部分)の高さに合わせてブラウザーの大きさを調整します。
//モニターの解像度を超えると、それ以上は調整されない。
function autoVResizeWindow(){
	newHeight = document.body.scrollHeight + 50;

	if(newHeight >= screen.availHeight - 50){
		window.dialogHeight = screen.availHeight - 50 + 'px';
	}else{
		window.dialogHeight = newHeight + 'px';
	}
}