/**
 * Opens up the "Locating Your Account Number" Pop Up
 */
function popAcctNumber () {
	open('/customercarecenter/pop-acct-number.html',
		 'acct', 
		 'toolbar=no,left=20,top=20,status=no,width=517,height=600,scrollbars=yes,directories=no,location=no,resizable=no,menubar=no');
}

/**
 * Opens up the "What is this?" Pop Up
 */
function popSecCode () {
	open('https://www.rd.com/offer/form/credit_popup.jsp',
		 'acct', 
		 'toolbar=no,left=20,top=20,status=no,width=510,height=545,scrollbars=no,directories=no,location=no,resizable=no,menubar=no');
}

/**
 * Goes to the specified address, usually onClick
 */
function goTo (strUrl) {
	document.location.href = strUrl;
}

/** 
 * Validates any given form.
 */
function validateForm (objForm) {  
	var strErrorMsg = '';
	if (objForm.username != null && objForm.username.value == '') {
		strErrorMsg += '* Please enter your username in the "Username" field of this form.\n';
	}
	if (strErrorMsg != '') {
		alert(strErrorMsg);
		return false;
	}
}