// this script requires /posterimages/posterfunctions.js to be already loaded.

pData = new Array("8th February::120208::120208 Plants and Pollen 631.jpg::Plants & Pollen::120208 Plants and Pollen 150.jpg","9th February::120209::120209 Egyptology 631.jpg::Egyptology on-avon::120209 Egyptology 150.jpg","10th February::120210::120210 Creativity 1002 826.jpg::Curiosity - Dr Bowyer::120210 Creativity 1002 150.jpg","10th February::120210::120210 RepRap 595.jpg::REPRAP Exhibition::120210 RepRap 150.jpg","11th February::120211::120211 Finance and Olympics 631.jpg::Finance and the Olympics::120211 Finance and Olympics 150.jpg","17th February::120217::120217 The Last Station 595.jpg::The Last Station::120217 The Last Station 150.jpg","20th February::120220::120220 Women in Politics 631.jpg::Women in Politics::120220 Women in Politics 150.jpg","21st February::120221::120221 Lit and Landscapes 595.jpg::Literature + Landscape::120221 Lit and Landscapes 150.jpg","22nd February::120222::120222 Ivor Gurney 577.jpg::Ivor Gurney::120222 Ivor Gurney 150.jpg","22nd February::120222::120222 Search for interesting 826.jpg::The Search For Interesting::120222 Search for interesting 150.jpg","24th February::120224::120224 crystal structure 632.jpg::100 years of crystal structure analysis::120224 crystal structure 150.jpg","25th February::120225::120225 Matrix 652.jpg::The Supervisory Matrix::120225 Matrix 150.jpg","2nd March::120302::120302 Maos Last Dancer 595.jpg::Maos Last Dancer::120302 Maos Last Dancer 150.jpg","5th March::120305::120305 Nothing 595.jpg::Nothing::120305 Nothing 150.jpg","7th March::120307::120307 Composing Music 595.jpg::Composing Music::120307 Composing Music 150.jpg","9th March::120309::120309 Clandestine Marriage 595.jpg::The Clandestine Marriage::120309 Clandestine Marriage 150.jpg","9th March::120309::120309 Members exhibition 592.jpg::Members Exhibition::120309 Members exhibition 150.jpg","14th March::120314::120314 Silk Road2 633.jpg::The Silk Road::120314 Silk Road2 150.jpg","16th March::120316::120316 Secrets in Their Eyes 595.jpg::Secrets in Their Eyes::120316 Secrets in Their Eyes 150.jpg","17th March::120317::120317 Analytic Network 610.jpg::There and Back Again::120317 Analytic Network 150.jpg");


// vertical list version

function genPosterHTMLvertical(max) {
max = (max==null) ? 5 : max;
var i,j;
if (pData.length==0) { // no posters
document.write('<br><br><a href="posterimages/postergallery.cfm">Click here</a> to visit our poster gallery');
} else { // at least one poster
max = (max > pData.length) ? pData.length : max;
//document.write('<b>EVENTS AT BRLSI</b><br><br>');
for (i=0;i<max;i++) {
	j=pData[i].split("::");
	document.write('<a href="javascript:openFullPoster(' +"'"+  j[2]  +"'"+ ')"><img border="0" src="' + getFullPosterUrl(j[4]) +'"><br>'+ j[0] + '</a><br><br>');
//	if (i==0) {
//		document.write('<a href="posterimages/postergallery.cfm">Click here</a> to visit our poster gallery<br><br>');
//	}
}
}
}



// horizontal list version
function genPosterHTMLhorizontal(max) {
max = (max==null) ? 5 : max;
var i,j;
if (pData.length==0) { // no posters
document.write('<br><br><a href="posterimages/postergallery.cfm">Click here</a> to visit our poster gallery');
} else { // at least one poster
max = (max > pData.length) ? pData.length : max;
document.write('<div align="center"><span class="frontpageSmallHead">Coming up at BRLSI</span><br>Click on a poster to see a full-size version, or visit our <a href="posterimages/postergallery.cfm"><b>Poster Gallery</b></a> to see more posters.<table width="100%" border="0" cellpadding="2"><tr>');
for (i=0;i<max;i++) {
	j=pData[i].split("::");
//	document.write('<td><div align="center"><a href="posterimages/showimg.cfm?f=' + j[2] + '"><img border="0" src="posterimages/' + j[4] + '"><br>'+ j[0] + '</a></td>');
//	document.write('<td><div align="center"><a href="javascript:openFullPoster(' +"'"+  j[2]  +"'"+ ')"><img border="0" src="posterimages/' + j[4] + '"><br>'+ j[0] + '</a></td>');
	document.write('<td><div align="center"><a href="javascript:openFullPoster(' +"'"+  j[2]  +"'"+ ')"><img border="0" src="' + getFullPosterUrl(j[4]) + '"><br>'+ j[0] + '</a></td>');
}
document.write('</table>Visitors welcome. This is just a selection of forthcoming events at BRLSI - for a complete list see our <a href="diary.htm"><b>What'+ "'"+'s On</b></a> page.</div>');
}
}


// New format horizontal
function genPosterHTMLhorizontalSL(max) {
max = (max==null) ? 5 : max;
var i,j;
if (pData.length==0) { // no posters
document.write('<br><br><a href="posterimages/postergallery.cfm">Click here</a> to visit our poster gallery');
} else { // at least one poster
max = (max > pData.length) ? pData.length : max;
document.write('<table cellpadding="0" border="0" width="800px"><tr>');
for (i=0;i<max;i++) {
	j=pData[i].split("::");
//	document.write('<td><div align="center"><a href="posterimages/showimg.cfm?f=' + j[2] + '"><img border="0" src="posterimages/' + j[4] + '"><br>'+ j[0] + '</a></td>');
//	document.write('<td><div align="center"><a href="javascript:openFullPoster(' +"'"+  j[2]  +"'"+ ')"><img border="0" src="posterimages/' + j[4] + '"><br>'+ j[0] + '</a></td>');
	document.write('<td><div align="center"><a href="javascript:openFullPoster(' +"'"+  j[2]  +"'"+ ')"><img border="0" src="' + getFullPosterUrl(j[4]) + '"><br>'+ j[0] + '</a></td>');
}
document.write('</table>');
}
}




