function setImage_original(image, id)
{	
	if (!id)
   		id = "s7flyout";
	
	if (document.embeds && document.embeds[id])
		document.embeds[id].setImage(image);
	else
		document.getElementById(id).setImage(image);
} 

function setImage(image, id, src, color)
{	
	//alert("Inside setImage function()");
	//alert(image);
	//if (id)
	//	alert("id/myName = " + id);
	//else
	//	alert("id/myName is null");
	//alert(src);
	//alert(color);
//	if (!document.getElementById(id))
///		alert("document.getElementById(" + id + ") is null");
		
	if (!id)
   		id = "s7flyout";
	if (document.embeds && document.embeds[id])
		document.embeds[id].setImage(image);
	else
		document.getElementById(id).setImage(image);
	
	//document.getElementById(src).style.border = "3px solid #ff0000";
	if (document.getElementById("currColor"))
		document.getElementById("currColor").innerHTML = color;

	if (document.getElementById("colors"))
	{
		if (color != "")
		{
			for(i=0;i<document.getElementById("colors").length;i++)
			{
				//alert('checking whether ' + document.getElementById("colors").options[i].value + ' = ' + color);
				if (document.getElementById("colors").options[i].value==color)
				{
				   document.getElementById("colors").selectedIndex=i
				}
			}
		}
		loadColorSize(0, "color", "true");
	}
} 	
	
function changeImage(theImage)
{
	//alert(theImage);
}
			        
	
	
