function openWin (URL, H, W)
		{
			aWindow = window.open(URL, "awindow", "toolbar=no,width=" +W+ ",height=" +H+ ",status=no,scrollbars=no,resize=yes,menubar=no");
			if (window.focus) {aWindow.focus()}
		}
	function openWinHW (URL, H, W)
	{
		bWindow = window.open(URL, "bwindow", "toolbar = no, width = " +W+ ", height = " +H+ " , status = no, scrollbars = no, resize = yes, menubar = no");
		if (window.focus) {bWindow.focus()}
	}
	function showElement(selectId, elementId)
	{
		elementId = document.getElementById(elementId);
		if (selectId.options[selectId.selectedIndex].value == "newperson")
		{
			elementId.style.display="block";
		}
		else
		{
			elementId.style.display="none";
		}
	}
	function enterDifferentAddress(selectId, elementId)
	{
		elementId = document.getElementById(elementId);
		if (selectId.value == "no")
		{
			elementId.style.display="block";
		}
		else
		{
			elementId.style.display="none";
		}
	}
	function otherInput(selectId, elementId)
	{
		elementId = document.getElementById(elementId);
		if (selectId.options[selectId.selectedIndex].value == "other")
		{
			elementId.style.display="block";
		}
		else
		{
			elementId.style.display="none";
		}
	}
	function showElement(selectId, elementId)
	{
		elementId = document.getElementById(elementId);
		if (selectId.options[selectId.selectedIndex].value == "newperson")
		{
			elementId.style.display="block";
		}
		else
		{
			elementId.style.display="none";
		}
	}	
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}