function printVm(checkType)
{

vmTiles = new Array();

vmTiles[0] = new Tiles("Wheel Deals","http://www.washingtonpost.com/wp-adv/specialsales/automarket/wheeldeals.html");
vmTiles[1] = new Tiles("Trucks & SUVs","http://www.washingtonpost.com/wp-adv/specialsales/automarket/truckssuvs.html");



function Tiles(text, url)
{
  this.text = text;
  this.url = url;
}


if (false) 
//if (checkType == '')

{


   if  (thisSection == 0)
   {
   document.write('<select onchange="window.open(this.options[this.selectedIndex].value,\'_top\')" name="navbox" size="2">');
   }
   else 
   {
    document.write('<select onchange="window.open(this.options[this.selectedIndex].value,\'_top\')" name="navbox" size="1">');
     document.write('<option value="">Pull Down Menu</option>');
   }


   

for ( var count = 0; count < vmTiles.length; count++ )
    {
    document.write('<option value="'+vmTiles[count].url+'">'+vmTiles[count].text+'</option>');
    }

document.write('</select>');

}
else
{
document.write('<table border="0" cellpadding="0" cellspacing="0" width="140">');


for ( var count = 0; count < vmTiles.length; count++ )
    {
    document.write('<tr><td height="17" valign="middle"><a href="'+vmTiles[count].url+'" class="nodec"><font face="Verdana" size="-2" color="#DAEAF8"><b>'+vmTiles[count].text+'</b></font></a></td></tr>');
    document.write('<tr><td height="1" bgcolor="#DAEAF8"><spacer type="block" width="140" height="1"></td></tr>');
    }
    
document.write('</table>');
}


}