function randomvid() {

var iframeurls=new Array()
//specify random URLs below.
iframeurls[0]="video/mayor.html"
iframeurls[1]="video/knight.html"
iframeurls[2]="video/blackwell.html"
iframeurls[3]="video/wiggins.html"
iframeurls[4]="video/watkins.html"
iframeurls[5]="video/rogers.html"
iframeurls[6]="video/miller.html"
iframeurls[7]="video/bullock.html"
iframeurls[8]="video/raper.html"
iframeurls[9]="video/penny.html"
iframeurls[10]="video/varney.html"
iframeurls[11]="video/manley.html"
iframeurls[12]="video/hinkle.html"
iframeurls[13]="video/WILRM1.html"
iframeurls[14]="video/WILRM2.html"

var ry=Math.floor(Math.random()*iframeurls.length)
//document.getElementById("myframe").src=iframeurls[ry]

document.getElementById('one').innerHTML = '<'+'object  id="foo" name="foo" type="text/html" data="'+iframeurls[ry]+'"><\/object>';
}

