function MM_openBrWindow(theURL, winName, features) 
{ //v2.0
 window.open(theURL, winName, features);
}


/*----------JOIN NOW-------------------------*/

function textLimitCheck(thisArea, showArea)
{
	showArea.value = thisArea.value.length;
}
	
function checkchi(myint) {
	var checkStr = myint;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++) {
		ch = checkStr.charCodeAt(i);			
    if (ch > 127 && !isOkChar(ch)) {      
				allValid = false;
     		break;
		}
	}
	if (!allValid){
		return (false);
	}
	return (true);
}	

function checkDetail(object,input_value)
{
	if (!(checkchi(input_value)))
	{
		document.check_form.detail.value=input_value;
		document.check_form.submit();
		return false;
	}
	return true;
}
/*------------------KONIEC JOIN NOW-----------------------*/
