function GMD_flashGun(loc) {
  document.body.style.backgroundColor='#f2f2f2';document.body.style.color='#000000';
  setTimeout('document.body.style.backgroundColor=\'#cccccc\';document.body.style.color=\'#f2f2f2\'',50);
  setTimeout('document.body.style.backgroundColor=\'#999999\'',100);
  setTimeout('document.body.style.backgroundColor=\'#666666\'',150);
  setTimeout('document.body.style.backgroundColor=\'#333333\'',175);
  setTimeout('document.body.style.backgroundColor=\'#0d0d0d\'',200);
  setTimeout('self.location=\'' + loc + '\'',250);
}

function GMD_changeText(divName,num) {
	var i = "item_option_description_" + num;
	document.getElementById(divName).innerHTML = eval("document.getElementById('" + i + "').value");
}

