function querySt(ji) {
	hu = window.location.search.substring(1);
	gy = hu.split("&");
	for (i=0;i<gy.length;i++) {
		ft = gy[i].split("=");
		if (ft[0] == ji) {
			return ft[1];
		}
	}
}

function login_onload() {
	var code = querySt("code");
	var tag = window.document.getElementById('promotext');
	if (code == "buy_day7") {
		tag.innerHTML="Log in to take advantage of our half price offer!";
	} else if (code == "buy_day11") {
		tag.innerHTML="Log In & Buy Now!";
	}
	var link = window.document.getElementById('ssl_link');
	if (link != null && code != null) {
		link.href += "?code="+code;
	}
	var action = window.document.getElementById('loginform');
	if (action != null && code != null) {
		action.action += "?code="+code;
	}
	var inputcode = window.document.getElementById('inputcode');
	if (inputcode != null && code != null) {
		inputcode.value = code;
	}
}


