<!--//
String.prototype.ltrim = function(){
	var re = /\s*((\S+\s*)*)/;
	return this.replace(re, "$1");
}

String.prototype.rtrim = function(){
	var re = /((\s*\S+)*)\s*/;
	return this.replace(re, "$1");
}

String.prototype.trim = function(){
	return this.ltrim().rtrim();
}

String.prototype.getByte = function(){
	var nByte = 0;

	for(var i=0; i<this.length; i++){
		nByte += (this.charCodeAt(i)>128) ? 2 : 1;
	}
	
	return nByte; 
}

function idSearchThisArea(sid){
	if(document.forms[0].searchIdUrl){
		location.href = document.forms[0].searchIdUrl.value + sid;
	}
}

function showInformation(sid){
	window.open("/member/member_information.php?mid=" + sid,"memInfo", "width=50, height=50");
}

function imgResize(sign){ 
	// DivContents ¿µ¿ª¿¡¼­ ÀÌ¹ÌÁö°¡ maxsize º¸´Ù Å©¸é ÀÚµ¿ ¸®»çÀÌÁî ½ÃÄÑÁÜ 
	var maxsize = 635; // °¡·Î»çÀÌÁî ( ´Ù¸¥°ªÀ¸·Î ÁöÁ¤ÇÏ¸éµÊ) 
	var content = document.getElementById("DivContents"); 
	var img = content.getElementsByTagName("img");
	var oneimg;

	for(i=0; i<img.length; i++){ 
		oneimg = eval('img[' + i + ']');

		/*
		if(sign==1){
			oneimg.onclick = function(){
				window.open("/showimg.php?url="+oneimg.src,"simg"+i,"width=10, height=10");
			}
		}
		*/

		if ( oneimg.width > maxsize ){ 
			var heightSize = (oneimg.height * maxsize) / oneimg.width; 

			oneimg.width = maxsize;
			oneimg.height = heightSize;
		} 
	}
}

function imgResizeAdmin(sign){ 
	// DivContents ¿µ¿ª¿¡¼­ ÀÌ¹ÌÁö°¡ maxsize º¸´Ù Å©¸é ÀÚµ¿ ¸®»çÀÌÁî ½ÃÄÑÁÜ 
	var maxsize = 450; // °¡·Î»çÀÌÁî ( ´Ù¸¥°ªÀ¸·Î ÁöÁ¤ÇÏ¸éµÊ) 
	var content = document.getElementById("DivContents"); 
	var img = content.getElementsByTagName("img");
	var oneimg;

	for(i=0; i<img.length; i++){ 
		oneimg = eval('img[' + i + ']');

		/*
		if(sign==1){
			oneimg.onclick = function(){
				window.open("/showimg.php?url="+oneimg.src,"simg"+i,"width=10, height=10");
			}
		}
		*/

		if ( oneimg.width > maxsize ){ 
			var heightSize = (oneimg.height * maxsize) / oneimg.width; 

			oneimg.width = maxsize;
			oneimg.height = heightSize;
		} 
	}
}
//-->