/***********************\
* Author: C. Crump      *
* last update: 09/19/03 *
\***********************/

// Opens a link in a new window
function updateColor2(color)
{
	
	document.getElementById("color").innerHTML = color;
	document.getElementById("color").innerTEXT = color;
}


// Opens a link in a new window
function updateColor(color, material)
{
  var x = color;
  document.getElementById(material).childNodes[0].nodeValue = x;
}

function select(s, img)
{
  var style = s;
  var image = img;
  var tag = '<img src="images/sandals/' + style + '/full/' + image + '" alt="" />';
  document.getElementById('img').innerHTML = tag;
}
function MM_openBrWindow(URL) {
window.open( URL, "myWindow", 
"status = 1, height = 300, width = 300, resizable = 0" )
}

