function showQuotes()
{
    if (isNaN(document.curQuote))
    {   document.curQuote = 0;
    } else
    if (++document.curQuote >2)
    {   document.curQuote = 0;
    }


//  var e = findElement("quote0");

//  if (e)
    {
        switch (document.curQuote)
        {
            case 0:
                quote0.innerHTML = '<table border="0"><tr><td colspan="2"><a href="../modecontrol.php#mpx-2" class="contact">Precision electrical measurement in an affordable and flexible 150 mm probing platform.</a></td></tr><tr valign="top"><td width="130"><a href="../modecontrol.php#mpx-2"><img src="images/m150.jpg" alt="" border="0"></a></td>'+'<td width="460" class="body"><br>Key Platform Elements: Benchtop smaller footprint and Multipurpose platforms available Preconfigured platforms and accessory bundles for RF, DC, PCB Board and mmWave applications Modular Build-Your-Own platforms. Wide range of accessories and upgrade options available.<a href="../modecontrol.php#mpx-2" class="body"><br><div align="right">more details &gt;&gt;</div></a></td></tr></table>'
                            ;
                break;
            case 1:
                quote0.innerHTML = '<table border="0"><tr><td colspan="2"><a href="../modecontrol.php#mpx-2" class="contact">Precision electrical measurement in an affordable and flexible 150 mm probing platform.</a></td></tr><tr valign="top"><td width="130"><a href="../modecontrol.php#mpx-2"><img src="images/m150.jpg" alt="" border="0"></a></td>'+'<td width="460" class="body"><br>Key Platform Elements: Benchtop smaller footprint and Multipurpose platforms available Preconfigured platforms and accessory bundles for RF, DC, PCB Board and mmWave applications Modular Build-Your-Own platforms. Wide range of accessories and upgrade options available.<a href="../modecontrol.php#mpx-2" class="body"><br><div align="right">more details &gt;&gt;</div></a></td></tr></table>'
                            ;
                break;
            case 2:
                quote0.innerHTML = '<table border="0"><tr><td colspan="2"><a href="../modecontrol.php#mpx-2" class="contact">Precision electrical measurement in an affordable and flexible 150 mm probing platform.</a></td></tr><tr valign="top"><td width="130"><a href="../modecontrol.php#mpx-2"><img src="images/m150.jpg" alt="" border="0"></a></td>'+'<td width="460" class="body"><br>Key Platform Elements: Benchtop smaller footprint and Multipurpose platforms available Preconfigured platforms and accessory bundles for RF, DC, PCB Board and mmWave applications Modular Build-Your-Own platforms. Wide range of accessories and upgrade options available.<a href="../modecontrol.php#mpx-2" class="body"><br><div align="right">more details &gt;&gt;</div></a></td></tr></table>'
                            ;
                break;
            //case 3:
            //    quote0.innerHTML = '<img src="images/items/IMG_0451.jpg" height="50" alt="" border="0">'
            //                +'<span class="bodyGray">&nbsp;&#147;ITEM 5 Description. &#148;'
            //                +'<br><br>'
            //                +'Item 5';
            //    break;
        
        }
    }

    setTimeout("showQuotes()", 10000)
}


//
//
//
function showQuotesOld()
{
    if(!document.curQuote)
    {
    document.curQuote=1;
        }

    var e=findElement("quote" + document.curQuote);
    if(e)
    {
        hideElement(e);
    }

    document.curQuote++;
    var e=findElement("quote" + document.curQuote);
    if(e)
    {
        showElement(e);
    }
    else
    {
        document.curQuote=1;
        var e=findElement("quote" + document.curQuote);

        if(e)
        {
            showElement(e);
        }
    }

    setTimeoutOld("showQuotes()", 10000)
}

  