/*=================================================================================================
'   1. ÆÄ  ÀÏ   ¸í      : CommonFunc.js
'   2. ÁÖ       Á¦      : ÇÔ¼ö Á¤ÀÇ ¼±¾ð ¸ðÀ½
'   3. ÀÛ  ¼º   ÀÚ      : È²¿¬ÁÖ
'   4. ÀÛ  ¼º   ÀÏ      : 2005.12.13.
'   5. ÁÖ ÀÇ »ç Ç×      :
=================================================================================================*/


/*-------------------------------------------------------------------------------------------------
 ÇÔ¼ö¸í : BlankCh
 ÀÎ¼ö   : str: ¹®ÀÚ¿­.
 ¼³¸í   : °ø¹éÀ» Á¦¿ÜÇÑ ¹®ÀÚÃ¼Å©   
-------------------------------------------------------------------------------------------------*/
function BlankCh(str)
{
  if (!(/\S/.test(str))) {
      return true;
  }
  else
  {
      return false;
  }
}



/*-------------------------------------------------------------------------------------------------
 ÇÔ¼ö¸í : StringSu
 ÀÎ¼ö   : str: ¹®ÀÚ¿­.
 ¼³¸í   : ¹®ÀÚ byte ¼ö ¹ÝÈ¯.
-------------------------------------------------------------------------------------------------*/
function StringSu(str)
{
    var TempSu = 0;
    for( i = 0; i < str.length ; i++ )
    { 
        ch = escape(str.substring(i,i+1)); 
        if ( ch.substring(2,6) < "AC00" || ch.substring(2,6) > "D7AF" )
            TempSu ++ 
        else
            TempSu += 2 ;

    } 

    return TempSu;
}


function PrintMsgBack( strMessage)
{
	var strHTML;
	strHTML = "<script language=\"javascript\">\n" +
		"<!--\n" +
		"alert('" + strMessage + "');\n" +
		"history.back();\n" +
		"//-->\n" +
		"</script>\n";

	
}


function makeFlash(fSrc, fWidth, fHeight){
document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ID=flash5clickthrough WIDTH=' + fWidth + ' HEIGHT=' + fHeight + ' >');
document.write ('<PARAM NAME=movie VALUE="' + fSrc + '">');
document.write ('<param name=wmode value=transparent>');
document.write ('<PARAM NAME=quality VALUE=high>');
document.write ('<embed src="' + fSrc + '" width="' + fWidth + '" height="' + fHeight + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent">');
document.write ('</embed>');
document.write ('</OBJECT>');
}
