function getSMB(w,h) {

var container = document.getElementById('smbContainer');
var randomNum = Math.floor(Math.random()*3+1);
var content = '';
var iframe = '';
var bypass = '';
if (w == null) {w = '276';}
if (h == null) {h = '160';}
switch (randomNum) {
case 1:
content = '<div style="text-align:center;"><img src="http://i.zdnet.com/images/200906/smartplanet-logo_spotlight_280.jpg" width="280" height="69" /></div>' +
'<ul class="spotlight-thumbnail-list"><li class="clear"><a href="http://www.smartplanet.com/technology/"><img src="http://i.smartplanet.com/images/ms/thumb_sm_blankenhorndodge_106x82.jpg" /></a><h5>Smart Tech</h5><p>Expert advice on innovations in healthcare and the green technologies that make it happen.<span><a href="http://www.smartplanet.com/technology/">Find out more</a></span></p></li><li class="clear"><a href="http://www.smartplanet.com/business/"><img src="http://i.smartplanet.com/images/ms/thumb_sm_clancymckendrick_106x82.jpg" /></a><h5>Smart Business</h5><p>Discussion and advice on management issues that revolve around making your world smarter and more useful.<span><a href="http://www.smartplanet.com/business/">More smart advice</a></span></p></li><li class="clear"><a href="http://www.smartplanet.com/people/"><img src="http://i.smartplanet.com/images/ms/thumb_sm_vthompson_106x82.jpg" /></a><h5>Smart People</h5><p>The best and worst moves in the management and strategy trenches.<span><a href="http://www.smartplanet.com/people/">Learn more</a></span></p></li></ul>';
bypass = '';
break;

case 2:
content = '<h3><a href="http://blogs.techrepublic.com.com/10things/?p=309">Enterprise Virtualization</a></h3><ul><li><img src="http://i.zdnet.com/images/200911/dellSpotlight_120x90.jpg" style="float:left;margin:0 10px 0 0;"/>Virtualization is quickly gaining momentum as a highly attractive solution for consolidating hardware, networking, storage, and applications.  However, taking the plunge into virtualization can be a big and confusing step.  Discover the most critical things you should know about virtualization and virtualization software before you start to plan a deployment.<br /><a href="http://blogs.techrepublic.com.com/10things/?p=309">Read the Network Administrator Blog</a></li></ul>';
bypass = 'dell_spotlight';
break;

case 3:
content = '<h3><a href="http://blogs.techrepublic.com.com/hiner/?p=2922">Cloud Computing Survey</a></h3><ul><li><img src="http://i.zdnet.com/images/200910/salesforce_spotlight_69x52.jpg" style="float:left;margin:0 10px 0 0;"/>A recent survey reports that two-thirds of IT departments have dedicated budgets for cloud computing but a follow up survey by TechRepublic indicates a significantly lower number of CIOs who reported that cloud computing was part of their 2009 budgets.   Learn about their reservations regarding cloud computing as well as what they have to say about their plans for 2010.<br /><a href="http://techrepublic.com.com/5208-7343-0.html?forumID=102&threadID=309800">Read the Tech Sanity Check Blog</a></li></ul>';
bypass = 'salesforce_spotlight';
break;
}




if (bypass != '') {

iframe = '<div class="sponsBox clear"><p class="meta">From Our Sponsors</p>' +
'<iframe scrolling="no" vspace="0" hspace="0" src="http://news.zdnet.com/html/z/smb/ads/' + bypass + '.html" border="0" frameborder="0" height="' + h + '" width="' + w + '">' +
'</iframe></div>';
}

container.innerHTML = '<div class="promoBox"><div id="spotlight"><h2>Spotlight On</h2><ul>' + content + '</ul>' + iframe + '</div></div><!-- /promoBox -->';

}


