function iQ() {
arrs = '';
thisArray = arrs.split('//');
rmax = 0 - 1;
var rnum = Math.floor(Math.random()*rmax);
thisItem = thisArray[rnum];
thisQuestion = thisItem.split('|');
qID = thisQuestion[0];
qName = thisQuestion[1];
qAnswer1 = thisQuestion[2];
qAnswer2 = thisQuestion[3];
qAnswer3 = thisQuestion[4];
qAnswer4 = thisQuestion[5];
document.getElementById('sq').innerHTML = 'SECURITY QUESTION:<br>'+qName+'<input type="hidden" name="sqi" value="'+qID+'">';
document.getElementById('sa').innerHTML = '<input type="radio" name="sq" value="'+qAnswer1+'">'+qAnswer1+'&nbsp;&nbsp;<input type="radio" name="sq" value="'+qAnswer2+'">'+qAnswer2+'&nbsp;&nbsp;<input type="radio" name="sq" value="'+qAnswer3+'">'+qAnswer3+'&nbsp;&nbsp;<input type="radio" name="sq" value="'+qAnswer4+'">'+qAnswer4;
}
window.onload = iQ

