var WhatsHotLink = new Array (10);
var WhatsHotText = new Array (10);

WhatsHotLink[0]  = "sva_1.php";
WhatsHotText[0]  = "SystemVerilog Assertion";

WhatsHotLink[1]  = "books.php";
WhatsHotText[1]  = "Have you seen our new book store?";

WhatsHotLink[2]  = "dpi_tutorial_1.php";
WhatsHotText[2]  = "SystemVerilog DPI: SV Layer";

WhatsHotLink[3]  = "dpi_tutorial_5.php";
WhatsHotText[3]  = "SystemVerilog DPI: C Layer";

WhatsHotLink[4]  = "plifaq.php";
WhatsHotText[4]  = "Verilog PLI FAQ";

WhatsHotLink[5]  = "psl_tutorial_1.php";
WhatsHotText[5]  = "PSL/Sugar Tutorial";

WhatsHotLink[6]  = "chap1_1.php";
WhatsHotText[6]  = "Verilog PLI Tutorial";

WhatsHotLink[7]  = "directc";
WhatsHotText[7]  = "VCS DirectC: A Report";

WhatsHotLink[8]  = "clocking_block_1.php";
WhatsHotText[8]  = "SystemVerilog Clocking Block";

WhatsHotLink[9]  = "interface_1.php";
WhatsHotText[9]  = "SystemVerilog Interface";

var WhatsHotIndex=Math.floor(Math.random()*10);

document.write('<A HREF="');
document.write(WhatsHotLink[WhatsHotIndex]);
document.write('">');
document.write(WhatsHotText[WhatsHotIndex]);
document.write('</A>'); 

