/*
 * Ticket 84: Diagnose and fix new javascript errors that make people's buttons stop working. 
*/

function SingleClick(argThis) {
	if (typeof argThis.clicked == 'undefined') {
		argThis.clicked = 1;
		return true;
	}
	alert('HELPFUL HINT!\n\nOn web pages, click just once on buttons and hyperlinks.\n\nClick OK to continue.');
	return false;
}

function newwindow(argUrl) {
	window.open(argUrl,	'continue',	'width=600,height=500,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes'); 
}

function BBBLink() { 
	window.open('http://www.bbbonline.org/cks.asp?id=1051122123917', 'BBBOnLine','location=yes,scrollbars=yes,width=600,height=300'); 
}
