function setBilling()
{
	if(document.getElementById("type-other").checked != true)
	{
		window.setTimeout("help2()", 1);
	}
	else
	{
		window.setTimeout("help()", 1);
	}
}

	function help() {
		document.getElementById("fieldset-foreigngroup").style.position = "relative";
		document.getElementById("fieldset-foreigngroup").style.display = "block";
	}
	function help2() {
		document.getElementById("fieldset-foreigngroup").style.position = "absolute";
		document.getElementById("fieldset-foreigngroup").style.display = "none";
	}