// aaronlee JavaScript Document

function changeColbg(id, s) {
  var col = s
  if (col == "on") {
  	var e = document.getElementById(id)
    e.style.backgroundColor = "#663300"
  }
  if (col == "off") {
    var e = document.getElementById(id)
	e.style.backgroundColor = "#B29551"
  }
}
function changeCol(id, s) {
  var col = s
  if (col == "on") {
  	var e = document.getElementById(id)
    e.style.color = "#ffffff"
  }
  if (col == "off") {
    var e = document.getElementById(id)
	e.style.color = "#333333"
  }
}

function gotoP(url) {
    location.href =  url
}
