//<!-- PUBS.JS V1.2 NOV/2008 -->
// Display random ads on home page

var pubs = new Array();
pubs[0] = "<div id='bottom_blocks' style='background-image:url(/home_page/img/lisa.jpg); background-position:bottom right; background-repeat:no-repeat;'>";
pubs[0] += "<h1>Solutions for Lisa and billions like her </h1>";
pubs[0] += "<a href='/digitalsecurity' style='margin: 0; float: left; width: 270px; height: 170px;'></a></div>";

pubs[1] = "<div id='bottom_blocks' style='background-image:url(/home_page/img/review_nov_hp.jpg); background-position:bottom left; background-repeat:no-repeat;'>";
pubs[1] += "<a href='/brochures/download/review_nov08/index.htm' style='margin: 0; float: left; width: 270px; height: 235px;'></a></div>";

pubs[2] = "<div id='bottom_blocks'>";
pubs[2] += "<a style='color:#fa821e;' href='focus/index.html'><h1>Focus on...</a>&nbsp; <img src='/images/puce_titre.gif' alt='' width='26' height='17' /></h1>";
pubs[2] += "<a href='security'><img style='border:0; float:left; margin: 0px 12px 12px 0px;' src='focus/images/security_focus1.jpg' width='70'alt='Focus: Security in documents'></a>  ";
pubs[2] += "<a href='security/index.html'><h2>Security in documents<br/>";
pubs[2] += "<span style='font-weight: 400'>ID documents are going high-tech, but are these solutions secure? Researchers claim to have hacked an epassport. </h2></span></a><br>&nbsp;";
pubs[2] += "<a target='_blank' href='http://www.rxforsecurity.com/'>";
pubs[2] += "<img style='border:0; float:left; margin: 0px 12px 12px 0px;' src='home_page/img/protecting_data.jpg' width='70'alt='Focus: Shouldn't you be just as careful about protecting a patient's data?'> ";
pubs[2] += "<h2>Protecting a patient's data?<br/>";
pubs[2] += "<span style='font-weight: 400'>Integrated IT solutions enable healthcare professionals to provide superior care, with complete security. View our recent Video Webcast with Microsoft.</span></h2></a></div>";

function display_pub() {
	var i = Math.round(Math.random()*(pubs.length-1));
	document.write(pubs[i]);
	}
