
function goHome () {
	window.location.href = "/";
}

function clearConfirm () {
	if (div = document.getElementById('page_confirm_msg')) {
	 	div.outerHTML = "";
	}
}

function clearError () {
	if (div = document.getElementById('page_error_msg')) {
	 	div.outerHTML = "";
	}
}

function adjustMozillaCSS() {
	if (!document.all) {
		var tbl = document.getElementsByName('tpl_marketing_points_content_tbl');
		var lnk = document.getElementsByName('tpl_marketing_points_lnk_div');
		
		for (i = 0; i < tbl.length; i ++) {
			
			if (i == 0) {
				tbl[i].style.marginLeft = "18px";
			} else {
				tbl[i].style.marginLeft = "30px";
			}
			
			lnk[i].style.top = "16px";
		}
	}
}

function changeButton (img, pos) {
	if (pos == 'out') {
		mod = 'over';
	} else {
		mod = 'out';
	}
	
	img.src = img.src.replace(mod + '.jpg', pos + '.jpg');
}

