function showWBlockCompanyInfo(id) {
	if (document.all) { // NS 4
		$(id).show();
		$('contentCompanyClaimWrap').hide();
		return true;
	} else {
		$('contentCompanyClaimWrap').fade({ queue: 'end', duration: 0.2 });
		$(id).appear({ queue: 'end', duration: 0.2 });
		return true;
	}
}

function hideWBlockCompanyInfo(id) {
	if (document.all) { // NS 4
		$(id).hide();
		$('contentCompanyClaimWrap').show();
		return true;
	} else {
	$(id).fade({ queue: 'end', duration: 0.2 });
	$('contentCompanyClaimWrap').appear({ queue: 'end', duration: 0.2  });
	return true;
	}
}
