// JavaScript Document

//p = number of available pages
//html_loc = location of files
		
function showText(p,html_loc){
var whichText = Math.round(Math.random()*(p-1)) + 1;
//		alert (html_loc+whichText+'.html');
frames['IFrameName'].location.href=html_loc+whichText+'.html';
}

// End
