//**************************************declare and set variables/arrays to establish number of sponsors to display
var numSponsors=6;			//set the number of sponsor banners to display...incr CLLS below too	//*
var banners=new Array(numSponsors);	//declare the array to hold banner image locations			//*
var bannerLinks=new Array(numSponsors);	//declare the array to hold the banner pointer urls			//*
var clls=new Array(6);			//array set to the number of cells/sponsors				//*
var tbl=new Array(2);			//declare array to hold table start and end tags			//*
var ttlCell;				//string to hold first cell properties and title of sponsors table	//*
//*****************************************************************************************************************


//**********************************************************************************set the banner array image list
//*banners[0]="http://www.3dconnexion.com/images/logo.jpg";			//*
banners[0]="/images/Logos/Sponsors/ptcuser_logo.jpg";				//*
banners[1]="/images/Logos/Sponsors/logo_tristar.jpg";				//*
banners[2]="/images/Logos/Sponsors/logo_ptc.jpg";				//*	
banners[3]="/images/Logos/Sponsors/logo_icubed.jpg";				//*
banners[4]="/images/Logos/Sponsors/logo_enser.jpg";				//*
banners[5]="/images/Logos/Sponsors/logo_mentor.jpg";				//*
//*banners[*]="/images/Logos/Sponsors/logo_mentor.jpg";				//*
//*banners[*]="/images/Logos/Sponsors/logo_sigmaxim.jpg";			//*
//*banners[*]="/images/Logos/Sponsors/butler.jpg";				//*
//*banners[*]="/images/Logos/Sponsors/ITI.jpg";					//*
//*banners[*]="/images/Logos/Sponsors/Enser.jpg";				//*
//*banners[*]="/images/Logos/Sponsors/logo_netideas.jpg";			//*
//*banners[*]="/images/Logos/Sponsors/logo_matrix.gif";				//*
//*banners[*]="/images/Logos/Sponsors/cambric.jpg";				//*
//*banners[*]="/images/Logos/Sponsors/logo_xdin.gif";				//*
//*banners[*]="/images/Logos/Sponsors/sci_logo.gif";				//*
//*banners[*]="/images/Logos/Sponsors/logo_cd-adapco.jpg";			//*
//*banners[*]="/images/Logos/Sponsors/apriori.gif";				//*
//*banners[*]="/images/Logos/Sponsors/Belcan.gif";				//*
//*banners[*]="/images/Logos/Sponsors/ITI.jpg";					//*
//*****************************************************************************************************************

//**********************************************************************************set the banner url pointer list
//*bannerLinks[0]="http://www.3dconnexion.com";									//*
bannerLinks[0]="http://www.ptcuser.org";									//*
bannerLinks[1]="http://www.tristar.com";									//*
bannerLinks[2]="http://www.ptc.com";										//*
bannerLinks[3]="http://www.i-cubed.com";									//*
bannerLinks[4]="http://www.enser.com";									//*
bannerLinks[5]="http://www.flomerics.com";									//*
//*bannerLinks[*]="http://www.flomerics.com";									//*
//*bannerLinks[*]="http://www.sigmaxim.com";									//*
//*bannerLinks[*]="http://www.butler.com";									//*
//*bannerLinks[*]="http://www.transcendata.com";								//*
//*bannerLinks[*]="http://www.enser.com";									//*
//*bannerLinks[*]="http://www.netideasinc.com";									//*
//*bannerLinks[*]="http://www.matrixcaddesign.com/products.html";						//*
//*bannerLinks[*]="http://www.cambric.com";									//*
//*bannerLinks[*]="http://www.xdin.com";									//*
//*bannerLinks[*]="http://www.Belcan.com";									//*
//*bannerLinks[*]="http://www.solidconcepts.com";								//*
//*bannerLinks[*]="http://www.transcendata.com";								//*
//*bannerLinks[*]="http://www.apriori.com";									//*
//*****************************************************************************************************************

//******************************************set the first cell's look and text to display (table title = "sponors")
ttlCell="<td width='100%' bordercolor='#FFFFFF' bgcolor='#072F84' align='center'><p align='center'><font size='2' color='#FFFFFF'>Sponsors</font></td>";
//*****************************************************************************************************************

//*********************************************************************set tbl array to start and end tags of table
tbl[0]="<table border='1' cellspacing='0' cellpadding='0' width='103' bordercolor='#072F84'>";			//*
tbl[1]="</table>";												//*
//*****************************************************************************************************************

//***************************************************************************set clls array to individual cell tags
clls[0]="<TR>";													//*		
clls[1]="<td width='100%' bordercolor='#FFFFFF' align='center' bgcolor='#FFFFFF'>";				//*
clls[2]="<p style='margin-top:0; margin-bottom:0'>";								//*
clls[3]="<a href='";												//*
clls[4]="' target='_blank'>";											//*
clls[5]="<img src='";												//*
clls[6]="'width='100' border='0'></p>";										//*
clls[7]="</TR>";												//*
//*****************************************************************************************************************

//************************************************************************print the table and cells to the document
document.write(tbl[0]);			//print the table's start tag						//*
document.write(ttlCell);		//print first cell of table						//*
														//*								
for(i=0;i<numSponsors;i++){		//print the remaining cells of the table				//*
	for(j=0;j<8;j++){											//*
		document.write(clls[j]);									//*
		if(j==3){											//*
			document.write(bannerLinks[i]);								//*
		}else if(j==5){											//*
			document.write(banners[i]);								//*
		}												//*
	}													//*
}														//*
														//*
document.write(tbl[1]);			//print the table's stop tag						//*
//*****************************************************************************************************************

//******************************lay the Join Mailing List image under the sponsors table***************************
document.write("<br><a href='https://app.expressemailmarketing.com/Survey.aspx?SFID=59260'>");	//*
document.write("<img src='/images/signup.gif' border='0' width='100' height='35'></a><br>");
document.write("<script language='javascript'src='leftFiller.js'></script>");
//*****************************************************************************************************************