var var_diverror = "";
var var_texterror = "";
var w_pad = 0;
var h_pad = 0;

function show_error(message, posx, posy)
{
	var_diverror = document.getElementById("diverror");
	var_texterror = document.getElementById("texterror");

	var_texterror.innerHTML = message;
	var_diverror.style.left = posx+'px';
	var_diverror.style.top = posy+'px';
	var_diverror.style.display = "block";

	return false;
}

function hide_error()
{
	var_diverror.style.display = "none";

	return false;
}

function resize_me(width, height)
{
	if (document.all)
	{
		if (width == 'auto')
			height = document.body.firstChild.offsetHeight + 45;
		if (width == 'auto')
			width = document.body.firstChild.offsetWidth + 10;
	}
	else
	{
		if (width == 'auto')
			height = document.body.childNodes[1].offsetHeight + 45;
		if (width == 'auto')
			width = document.body.childNodes[1].offsetWidth + 10;
	}

	window.resizeTo(w_pad+width, h_pad+height);
}

function linkto_uncrypt_mailto(string)
{
	location.href = 'mailto:'+string.replace('/', '@');;
}
