function button_over(buttonid) {
                document.images[buttonid].src = 'round/img/account/' + buttonid + '-over.gif';
}
function button_out(buttonid) {
                document.images[buttonid].src = 'round/img/account/' + buttonid + '.gif';
}

function button_over_acct(button) {
                button.src = 'round/img/account/' + button.id + '-over.png';
}
function button_out_acct(button) {
                button.src = 'round/img/account/' + button.id + '.png';
}

function buttonRollover(element) {
		currentClass = element.className ;
		rollClass = currentClass + "_roll";
		element.className = rollClass;
}

function buttonRollout(element) {
		currentClass = element.className ;
		breakClass = currentClass.split("_");
		outClass= breakClass[0];
		element.className = outClass;
}

function testInProgress() {
	document.getElementById('testingPhones-popup').style.display = 'block';
	Element.removeClassName('popupAlpha', 'apopup_hide');
		addClassName('popupAlpha', 'apopup_show');
}


