﻿/* spotlights */

var myspotlight = new Array();

/*myspotligt[x] = new Array(image file,
title,
written content,
link,

*/

myspotlight[1] = new Array('images/spotpic4.jpg',
'Free Safety Meeting Topics',
'PPHSA has released a new slate of safety meeting packages … some of your favourites have been refreshed and others are brand new. ',
'safetymeetingtopics.html',
'New! MSD Prevention',
'safetymeetingtopics.html',
'New! Guarding ',
'safetymeetingtopics.html',
'View All');

myspotlight[2] = new Array('images/spotpic5.jpg',
'Prevent Heat Stress',
'Use these tools to help identify, assess and control heat stress.',
'pdfs/Guide-15-6.pdf',
'Download Heat Stress Guide',
'pdfs/Wheel-15-6.pdf',
'Download Heat Stress Wheel',
'http://www.labour.gov.on.ca/english/hs/guidelines/gl_heat.html',
'View MOL Guideline');

myspotlight[3] = new Array('images/spotpic3.jpg',
'Prevent Noise-induced Hearing Loss',
'The Ministry of Labour has updated the occupational limits for noise. These changes became effective July 1, 2007.',
'http://www.labour.gov.on.ca/english/hs/guidelines/noise/index.html',
'View New MOL Guideline',
'http://www.pphsa.on.ca/industrialhygiene.html',
'Request Noise Testing');

myspotlight[9] = new Array('images/spotpic.jpg',
'Prevent MSDs',
'Use these tools to prevent MSDs, reduce costs, boost productivity, and improve product and service quality.',
'pdfs/MSDPreventionGuidelineforOntarioENWR.pdf',
'Download MSD Prevention Guideline',
'pdfs/ResourceManualforMSDPreventionGuidelineENWR.pdf',
'Download MSD Prevention Resource Manual',
'infoergonomics.html',
'Download MSD Prevention Toolbox');

myspotlight[4] = new Array('images/spotpic.jpg',
'Prevent MSDs',
'Use these tools to prevent MSDs, reduce costs, boost productivity, and improve product and service quality.',
'pdfs/MSDPreventionGuidelineforOntarioENWR.pdf',
'Download MSD Prevention Guideline',
'pdfs/ResourceManualforMSDPreventionGuidelineENWR.pdf',
'Download MSD Prevention Resource Manual',
'pdfs/msdparta.pdf',
'Download MSD Prevention Toolbox Part A',
'pdfs/msdpartb.pdf',
'Download MSD Prevention Toolbox Part B',
'pdfs/msdpartc.pdf',
'Download MSD Prevention Toolbox Part C');


myspotlight[5] = new Array('images/spotproductpic.jpg',
'WHMIS for Everyone CD',
'This CD has been developed by PPHSA in order to provide the essential information needed for a comprehensive workplace- specific WHMIS training program for all workers in low risk occupations. The program will also serve as a foundation for continued training for those workers in higher risk occupations. <a href="trainingcds.html">Click here for more information</a>',
'mailto:lbreckles@pphsa.on.ca?subject=Order WHMIS for Everyone',
'Order WHMIS for Everyone');

myspotlight[6] = new Array('images/spotpic6.jpg',
'Risk Assessment for the Corrugating Industry',
'Join the Canadian Corrugated Case Association Board of Directors along with PPHSA for a free half-day overview of a new sector-specific risk assessment program.',
'pdfs/RiskAssessmentfortheCorrugatingIndustryRegistration.pdf',
'Download Registration Information');

myspotlight[7] = new Array('images/spotpic7.jpg',
'2008 AGM, Conference & Trade Show',
'The Road to Zero',
'pdfs/PPHSA_ProductFlyer.pdf',
'Download 2008 Product and Service Guide',
'trainingcds.html',
'Special Offer: Buy One CD, Get One Free',
'training.html',
'View Upcoming Training');

myspotlight[8] = new Array('images/spotpic8.jpg',
'2008 AGM, Conference & Trade Show',
'The Road to Zero - Join us for a day of comprehensive presentations from the experts on health, safety and wellness in the pulp, paper and related industries.  September 18, 2008',
'pdfs/roadtozeroconferenceweb.pdf',
'Download Delegate Registration',
'conferences.html',
'Visit Conference Page');



function spotlight(which){
document.write('<table align="left" id="Table_01" width="482" border="0" cellpadding="5" cellspacing="5">');
document.write('	<tr align="left">');
document.write('		<td rowspan="4" valign="top">');
document.write('			<img src="'+myspotlight[which][0]+'">');
document.write('		</td>');
document.write('		<td width="314" class="bodyText2" valign="top">'+myspotlight[which][1]+'<br>');
document.write('			<span class="bodyText"><b>'+myspotlight[which][2]+'<br>');
for (var y = 3;y < myspotlight[which].length;y=y+2)
{
document.write('<a target="_blank" href="'+myspotlight[which][y]+'" >'+myspotlight[which][y+1]+'</a><br>');
//document.write('<a href="'+myspotligh[which][y]+'" target="_blank">'+myspotlight[which][y+1]+'</a>');
}
document.write('		</b></td>');
document.write('	</tr>');
document.write('</table>');
}