// ÀÍ½ºÇÃ·Î·¯?
var isIe = navigator.userAgent.toLowerCase().indexOf("msie") != -1;

// ¿¤¸®¸ÕÆ® id ¹ÝÈ¯
// ¿¹) alert('span1'.id('self').innerHTML);
String.prototype.id = function(frameIdStr)
{
	if (frameIdStr != null) {
		var s = frameIdStr + ".document.getElementById('" + this + "');";
		return eval(s);
	}
	else {
		return document.getElementById(this);
	}
}

// ¹®ÀÚ¿­ ¾ÕµÚ °ø¹é Á¦°Å
String.prototype.trim = function()
{
	return this.replace(/(^\s*)|(\s*$)/g, "");
}
