function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}
function jargon()
{
var jar = new Array();

jar[0]='<div><h4><a href="jargonbuster.php#cache">what is &quot;cache&quot;?</a></h4><p>A cache is a place to store something temporarily. The files you <a href="jargonbuster.php#cache">...</a></p></div>';

jar[1]='<div><h4><a href="jargonbuster.php#ADSL">what is &quot;ADSL&quot;?</a></h4><p>ADSL (Asymmetric Digital Subscriber Line) is a technology for transmitting digital information at <a href="jargonbuster.php#ADSL">...</a></p></div>';

jar[2]='<div><h4><a href="jargonbuster.php#cookie">what is a &quot;cookie&quot;?</a></h4><p>Some sites need to know if you have been there before to enable conveniences for you such as <a href="jargonbuster.php#cookie">...</a></p></div>';

jar[3]='<div><h4><a href="jargonbuster.php#frames">what are &quot;frames&quot;?</a></h4><p>In creating a website, frames is the use of multiple, independently controllable <a href="jargonbuster.php#frames">...</a></p></div>';

jar[4]='<div><h4><a href="jargonbuster.php#Hits">what are &quot;hits&quot;?</a></h4><p>There is some confusion about the term "hits". You hear companies  <a href="jargonbuster.php#hits">...</a></p></div>';

jar[5]='<div><h4><a href="jargonbuster.php#URL">what is &quot;URL&quot;?</a></h4><p>URL is an acronym for Uniform Resource Locator, which <a href="jargonbuster.php#URL">...</a></p></div>';

jar[6]='<div><h4><a href="jargonbuster.php#Hosting">what is &quot;hosting&quot;?</a></h4><p>The second — and very important to get it right — step to establishing <a href="jargonbuster.php#hosting">...</a></p></div>';


var n=rand_number(7); 
document.write(jar[n]);
}