function imgover(imgs) {
	imgs.src = imgs.src.replace("off.gif", "on.gif");
}
function imgout(imgs) {
	imgs.src = imgs.src.replace("on.gif", "off.gif");
}

// png ÆÄÀÏ Åõ¸í Ã³¸® 
function setPng24(obj) {
    obj.width=obj.height=1;
    obj.className=obj.className.replace(/\bpng24\b/i,'');
    obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
    obj.src='';
    return '';
}

var activeX = {
	/**
	 * ÀÏ¹ÝÀûÀÎ ÇÃ·¡½Ã ÆÄÀÏ ·Îµù
	 * @param _URL			(ÇÃ·¡½Ã URL)
	 * @param _ID				(ÇÃ·¡½Ã ID)
	 * @param _width		(ÇÃ·¡½Ã °¡·ÎÅ©±â)
	 * @param _height		(ÇÃ·¡½Ã ¼¼·ÎÅ©±â)
	 * @param _title		(ÇÃ·¡½Ã Å¸ÀÌÆ²)
	 * @param _contents	(ÇÃ·¡½Ã ³»¿ë)
	 */
	generalFlash: function(_URL, _ID, _width, _height, _title, _contents) {
		var _ID = _ID || "REDPEOPLE-FLASH";
		var _title = _title || "ÇÃ·¡½Ã";
		with (document) {
			write(' <object class="SITE-FLASH" id="'+_ID+'" title="'+_title+'" type="application/x-shockwave-flash" data="'+_URL+'" width="'+_width+'" height="'+_height+'">');
			write('	<param name="movie" value="'+_URL+'" />');
			write('	<param name="menu" value="false" />');
			write('	<param name="quality" value="high" />');
			write('	<param name="wmode" value="transparent" />');
			write('	<param name="allowScriptAccess" value="always" />');
			if (_contents == "") {
				write('	<p>ÀÌ ÄÜÅÙÃ÷´Â Flash·Î Á¦ÀÛµÇ¾ú½À´Ï´Ù.<br />ÀÌ ÄÜÅÙÃ÷¸¦ º¸·Á¸é <a href="http://www.adobe.com/kr/products/flashplayer/" title="»õÃ¢¿­±â" target="_blank"><strong>Flash Player</strong></a>(¹«·á)¸¦ ¼³Ä¡ÇØ¾ß ÇÕ´Ï´Ù.</p>');
				write('	<p><strong>< Flash ³»¿ë ></strong></p>');
				write('	<p>'+_title+'</p>');
			} else {
				write(_contents);
			}
			write('</object>');
		}
	}
}


