function gotoThreadlistPage(nodeIDX,page){
	$j("#threadsContainer").load("index.php?name=Forums&method=showThreads&nodeIDX="+nodeIDX+"&page="+page);
}

function forumsPreFormValidation(){ 
	var sc_code = $j("#sc_code").val();
	var rtvalue = "";
	
	if(sc_code != ""){
		$j.ajax({
			type: "GET",
			async:false,
			url: "index.php?name=Forums&method=checkCaptcha&sc_code="+sc_code,
			dataType: "html",
			success: function(response){
				if(response == 'false'){
					rtvalue = Common.getLocale(objLC.js_captchaError,'js_captchaError');
				}
				else if(response == 'true'){
					rtvalue = true;
				}
			}
		});
	}
	
	return rtvalue;
}
