function getSMB(w,h) {

var container = document.getElementById('smbContainer');
var randomNum = Math.floor(Math.random()*1+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_mkaplan_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;

}

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 -->';

}


