// JavaScript Document


//written by AG at 4ward (agrant@4ward.ca) to alleviate sitewide changes when using DW library items.
function draw_news ( language ) {
	var spacing = "";
	var amount_of_spaces = 10; //change this to suit.
	
	//build spacing string to insert spaces after each line
	for (var i = 0; i < amount_of_spaces; i++) {
		spacing +="&nbsp;";
	}
	
	
	//PLEASE NOTE: -- to update the below statements, the string MUST be wrapped in single quotes, and all apostrophe characters must be preceeded with a \ to escape them.
	//Also note: french characters with accents should use the proper HTML entities. ie é should be replaced with &eacute;


	
	//these are the english ticker statements
	var english =  '<a href="/english/news/savvis_completes_acquisition_of_fusepoint.pdf" class="ticker">Savvis Completes Acquisition of Fusepoint</a>' + spacing +
						'<a href="/english/news/savvis_to_acquire_canadian-based_fusepoint.pdf" class="ticker">Savvis to Acquire Canadian-Based Fusepoint</a>' + spacing +
						'<a href="/english/news/Fusepoint_HyperV_Cloud.pdf" class="ticker">Fusepoint Lights up Private Cloud Hosting Solutions in Canada</a>' + spacing +
						'<a href="/english/news/Sam_Ikomi_Appointment.pdf" class="ticker">Fusepoint Names Sam Ikomi to Vice President, Data Centre Facilities</a>' + spacing +
						'<a href="/english/news/Vancouver_Foundation.pdf" class="ticker">Fusepoint Chosen to Manage Vancouver Foundation\'s Online Applications &amp; Infrastructure</a>' + spacing +
						'<a href="/english/news/Financals2009.pdf" class="ticker">Fusepoint Achieves 10 Years of Continued Revenue Growth</a>' + spacing +
						/* '<a href="/english/news/FP_PCI.pdf" class="ticker">Fusepoint Managed Services Renews Commitment to Tier 1 PCI, DSS Compliance</a>' + spacing + */
						'<a href="/english/news/kinross.pdf" class="ticker">Fusepoint Managed Services Strikes Gold with Kinross</a>' + spacing +
						/* '<a href="/english/news/PCI_Webinar.pdf" class="ticker">Security Expert Webcast: Understanding PCI Compliance and How to Protect Your Business</a>' + spacing + */
						/* '<a href="/english/news/Tax-EN.pdf" class="ticker">Central Tax Benefits From Fusepoint\'s Secure PCI Compliant Managed Hosting Environment</a>' + spacing + */
						'<a href="/english/news/sharepoint-EN.pdf" class="ticker">Fusepoint Launches SharePoint Application Development and Managed Hosting Services</a>' + spacing +
						/* '<a href="/english/news/Miratel-EN.pdf" class="ticker">MiraTel Selects Fusepoint to Develop and Manage PCI Compliant Online Payment Application for Lottery Ticket Sales</a>' + spacing + */
						'<a href="/english/news/MYTRAK_FINAL(E).pdf" class="ticker">MYTRAK Health System Gets Fitted with Fusepoint\'s VMware Managed Hosting Solution</a>' + spacing; 


	//these are the french ticker statements
									 									 
	var french ='<a href="/francais/news/fr-savvis_acquiert_fusepoint.pdf" class="ticker">Savvis acquiert Fusepoint</a> ' + spacing +  
					'<a href="/francais/news/Fr-Fusepoint_HyperV_Cloud.pdf" class="ticker">Fusepoint vient &eacute;clairer les solutions de prise en charge de nuages priv&eacute;s au Canada</a> ' + spacing +
					'<a href="/francais/news/Sam_Ikomi_Appointment_V3-Fr.pdf" class="ticker">Fusepoint nomme Sam Ikomi au poste de vice-pr&eacute;sident, Installations de centres de donn&eacute;es</a> ' + spacing +
					'<a href="/francais/downloads/Fr-Vancouver_Foundation.pdf" class="ticker">La Fondation Vancouver retient Fusepoint pour g&eacute;rer ses demandes en ligne et son infrastructure web</a> ' + spacing +
					'<a href="/francais/news/Fr-Financals2009.pdf" class="ticker">Fusepoint affiche dix ann&eacute;es de croissance continue de ses recettes</a> ' + spacing +
					/* '<a href="/francais/news/FP_PCI-FR.pdf" class="ticker">Fusepoint renouvelle son engagement &agrave; se conformer au plus haut niveau des Normes de s&eacute;curit&eacute; es donn&eacute;es du secteur des cartes de paiement (PCI-DSS)</a> ' + spacing + */
					'<a href="/francais/news/Fr-CentralTaxv.pdf" class="ticker">Fusepoint fait b&eacute;n&eacute;ficier Centrale Taxes d&rsquo;un environnement infog&eacute;r&eacute;, s&eacute;curis&eacute; et conforme aux normes du secteur des cartes de paiement</a> ' + spacing + 	
					'<a href="/francais/news/sharepoint-FR.pdf" class="ticker">Fusepoint lance ses services de d&eacute;veloppement applicatif et d\'infog&eacute;rance pour SharePoint</a> ' + spacing + 	
					'<a href="/francais/news/Miratel-FR.pdf" class="ticker">MiraTel choisit Fusepoint pour d&eacute;velopper et g&eacute;rer une application de paiement en ligne conforme aux normes du secteur des cartes de paiement pour la vente de billets de loteri </a>' + spacing + 
					'<a href="/francais/news/MYTRAK_FINAL_FRE-1.pdf" class="ticker">MYTRAK Health System choisit la solution d\'h&eacute;bergement infog&eacute;r&eacute; VMware de Fusepoint</a> ' + spacing;


	//this block serves the proper ticker statements.
	if ( language == "en" ) {
		document.write( english );
	} else if ( language == "fr" ) {
			document.write( french );
	}
}