//=======================================================//
//----------------- Login ---------------------//
//=======================================================//
function popupLoginResponse(responseText)
{
	if(responseText.match(/##success##/, responseText))
	{
		responseText = responseText.replace("##success##", "");
		showPopupMessage("FrmPopupLogin", responseText);
		hidePopupTimeout('FrmPopupLogin', 5000);
		window.location.reload();
	}
	else if(responseText.match(/##error##/, responseText))
	{
		responseText = responseText.replace("##error##", "");
		document.getElementById("FrmPopupLoginMsg").innerHTML = responseText;
	}
	else
	{
		//alert(responseText);
	}
}


//================= Reload Catpcha Code =================//
function reloadCaptchaCode(captcha_code)
{
	if(typeof(captcha_code)=="undefined")
	{
		try
		{
			document.getElementById('captcha_code').src = document.getElementById('captcha_code').src;
		}
		catch(e){}
	}
	else
	{
		document.getElementById(captcha_code).src = document.getElementById(captcha_code).src;
	}
}

function reportAbuseCommentFocus(comment)
{
	comment.style.fontSize = "12px";
	comment.style.color = "#000000";
	comment.style.textAlign = "left";
	
	if(comment.value=="\nyour comments")
	{
		comment.value = "";
	}	
}

function reportAbuseCommentBlur(comment)
{
	if(comment.value=="")
	{
		comment.style.fontSize = "18px";
		comment.style.color = "#AAAAAA";
		comment.style.textAlign = "center";
		comment.value = "\nyour comments";
	}	
}
