
function ChooseBios(bios,biosWanted,putEmHere){if((arguments.length<3)||(biosWanted>bios.length)){alert('There was a problem loading the bios: line 5');this.allGood=false;return;}
this.allGood=true;this.bios=bios;this.biosWanted=biosWanted;this.putEmHere=putEmHere;this.chosenBios=[];this.sort=function(){var i=0;while(i<this.biosWanted){if(this.chosenBios.length>this.biosWanted)break;var newRanNum=Math.floor(Math.random()*this.bios.length)
if(this.chosenBios.join().indexOf(newRanNum)<0){this.chosenBios.push(newRanNum);i++;}}}
this.returnBios=function(){if(this.chosenBios.length==this.biosWanted){for(var i=0;i<this.chosenBios.length;i++){this.putEmHere.appendChild(this.bios[this.chosenBios[i]]);}}}}