/************************************************************/
/*Function Name: SwitchImage(s_Id,s_Src)					*/
/*Function Purpose: This function takes in the field ID,	*/
/* the source of the image to be							*/
/* changed to, and it then creates a						*/
/* new image object, sets the source						*/
/* and changes the image.  It does all						*/
/* of this without having to create							*/
/* individual image objects.								*/
/*Parameters:												*/
/*  s_Id - The Id of the image tag							*/
/*	s_Src - The source of the image you want to switch to	*/
/*Created By:Michael Witczak - 07/19/2002					*/
/************************************************************/
function SwitchImage(s_Id, s_Src)
{
	var o_Image = new Image();				// Create a new Image object
	o_Image.src = s_Src;					// set its source to be the new image shown
	document.images[s_Id].src = o_Image.src;// set the on-screen source to be the new source
}
