popupWin = null;
infoWindow = null;

function Rcertify() {
	if (infoWindow && !infoWindow.closed) {
		infoWindow.close();
	}
	popupWin = window.open('http://www.bbbonline.org/cks.asp?id=1020326115422524','Participant','location=yes,scrollbars=yes,status=yes,width=450,height=300,left=0,top=0'); 
	popupWin.focus();
	window.name = 'opener';	
}
 
function infoWin(infoPage) {
	if (popupWin && !popupWin.closed) {
		popupWin.close();
	}	
	leftPos = 0;
	if (screen) {
            leftPos = screen.width - 550;
	}        
	infoWindow = window.open(infoPage,"Bobby","width=530,height=400,location=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,left="+leftPos+",top=0");
	infoWindow.focus();
}

function shutWins() {
	if (infoWindow && !infoWindow.closed)  {
		infoWindow.close();
	}
	if (popupWin && !popupWin.closed) {
		popupWin.close();
	}
}

