// JavaScript Document
function set_background(id,image){
	document.getElementById(id).style.background = 'url('+image+') bottom right no-repeat #000'
}

function input_highlight(obj){
	obj.style.backgroundColor = "#FFFF00";
}

function input_unhighlight(obj){
	obj.style.backgroundColor = "#FFFFFF";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
