<!-- Hide script
function CheckLogin() {
	document.cookie="testingcookie=10;path=/";

	if (document.UserNameForm.myUsername.value == "") {
		alert("Username is required.");
		return false;
	}

	if (document.PasswordForm.myPassword.value == "") {
		alert("Password is required.");
		return false;
	}

	document.PasswordForm.myUsername.value=document.UserNameForm.myUsername.value;

	var index = document.cookie.indexOf("testingcookie");
	if (index == -1) {
		timeA = new Date();
		timeB = new Date();
		while (Date.parse(timeA) > (Date.parse(timeB) - 1000)) { // 1 second delay to make sure the IE has had time to properly set the cookie
			timeB = new Date();
		}
		index = document.cookie.indexOf("testingcookie");
		if (index == -1) {
			alert('You need to enable cookies in order to configure your cart.');
			return false;
		}
	}
	return true;
}
// End script hiding -->
