// **************************************
// **************************************
// È­¸é ÀÌµ¿ ÀÚ¹Ù½ºÅ©¸³Æ®¿ë
function xgo(url) {
	location.replace(url);
}
 // **************************************
function goPageLink1(list_count,link_count,num_str,enc_str,fname){
//	Frm = document.+fname;
//alert(Frm);
	Frm.list_count.value = list_count; 
	Frm.link_count.value = link_count;
	Frm.num_str.value = num_str;
	Frm.enc_str.value = enc_str;
	Frm.submit();
}
  // **************************************

//ÇÃ·¡½¬ÀÓº£µå
function DisplayFlash(url, width, height){

 var CLASSID = "D27CDB6E-AE6D-11cf-96B8-444553540000";
 var CODEBASE = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0";
 var PLUGINSPAGE = "http://www.macromedia.com/go/getflashplayer";
 var TYPE = "application/x-shockwave-flash";

 document.write('<object classid="clsid:'+CLASSID+'" codebase="'+CODEBASE+'" width="'+width+'" height="'+height+'">'
 +'              <param name="movie" value="' + url + '">'
 +'              <param name="quality" value="high">'
 +'				 <PARAM name="wmode" value="transparent">'
 +'              <embed src="' + url + '" quality="high" pluginspage="'+ PLUGINSPAGE + '" type="' + TYPE + '" width="'+width+'" height="'+height+'">'
 +'              </embed> </object>');
}

//µ¿¿µ»óÀÓº£µå
function DisplayMoving(url, width, height){
 var CLASSID = "22D6F312-B0F6-11D0-94AB-0080C74C7E95";
 
 var CODEBASE = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701";
 
 document.write('<object classid="CLSID:'+CLASSID+'" codebase="'+CODEBASE+'" width="'+width+'" height="'+height+'" id="Player">'
 +'		 <param name="autoStart" value="True">'
 +'              <param name="AutoSize" value="0"> '
 +'              <param name="AutoResize" value="0">'
 +'              <param name="stretchToFit" value="True">'
 +'              <param name="Filename" value="' + url + '">'
 +'              <param name="enableContextMenu" value="False">'
 +'              <param name="enable" value="false">'
 +'              <param name="uiMode" value="None">'
 +'              <param name="volume" value="20">' 
 +'              <param name="ShowControls" value="true">'
 +'              </object>');		
}

/*=============================================
name : 21. fn_isNumber(str) 
input : ¼ýÀÚÀÎÁö ÆÇ´ÜÇÒ °ª
Return : true/false
Comment : ¼ýÀÚÀÎÁö ¾Æ´ÑÁö ÆÇ´ÜÇÑ´Ù(¼ýÀÚÀÌ¸é true, ¾Æ´Ï¸é false)
Usage :	if (fn_isNumber(document.form.ssn1.value))...
------------------------------------------------*/
function fn_isNumber(str) 
{
	var strAt = "";
	if(str == null) return false;
	for (var i = 0; i < str.length; i++) 
	{
		strAt = str.charAt(i);
		if ((strAt < "0" || strAt > "9")&&(strAt < "£°" || strAt > "£¹")) return false       
	}
	return true
}


function GoOpener(url){
	window.opener.location.href=url;
	self.close();
}