//Copyright (c) 2003 PAULGRANT.ON.CA Inc.
//http://paulgrant.on.ca

self.defaultStatus = "Joesightings - Daily news and sightings from around the world!";

var gaJoeType = new Array();

gaJoeType[ 0 ] = new Array();
gaJoeType[ 0 ][ 0 ] = 1
gaJoeType[ 0 ][ 1 ] = "3 & 3/4 Figures";

gaJoeType[ 1 ] = new Array();
gaJoeType[ 1 ][ 0 ] = 2
gaJoeType[ 1 ][ 1 ] = "3 & 3/4 Vehicles";

gaJoeType[ 2 ] = new Array();
gaJoeType[ 2 ][ 0 ] = 3
gaJoeType[ 2 ][ 1 ] = "12\" Figures";

gaJoeType[ 3 ] = new Array();
gaJoeType[ 3 ][ 0 ] = 4
gaJoeType[ 3 ][ 1 ] = "12\" Vehicles";

function ShowType(iId, aType, iIdx, bReturn)
{
	if(!iIdx)
		iIdx = 1;

	var i = 0;
	for(i = 0; i < aType.length; i++)
	{
		if(aType[ i ][ 0 ] == iId)
		{
			if(bReturn == true)
				return aType[ i ][ iIdx ];
			else
				document.write(aType[ i ][ iIdx ]);

			break;
		}
	}
}
//End.

