function isD(e) {
	if (e) {
		return (e.style.display == 'block');
	} else {
		return false;
	}
}
function gE(id) {
	return document.getElementById(id);
}
function sD(e) {
	if (e) {
		e.style.display = 'block';
	}
}
function hD(e) {
	if (e) {
		e.style.display = 'none';
	}
}
function tD(e,ee) {

	if (e) {
		if (isD(e)) {
			hD(e);
            gE(ee+'b').style.background='#0671fc'
            gE(ee+'bb').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_bline2.gif) repeat-x bottom'
            gE(ee+'bl').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_bl2.gif) no-repeat left bottom'
            gE(ee+'br').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_br2.gif) no-repeat right bottom'
		} else {
			sD(e);
            gE(ee+'b').style.background='#0671fc url(/accounts/default1/themes/signup/_common_templates/img/adv_back.gif) bottom repeat-x'
            gE(ee+'bb').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_bline.gif) repeat-x bottom'
            gE(ee+'bl').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_bl.gif) no-repeat left bottom'
            gE(ee+'br').style.background='url(/accounts/default1/themes/signup/_common_templates/img/adv_br.gif) no-repeat right bottom'
		}
	}
}


