function delete_sticky(sid){
	alert(sid);
}
function add_sticky(sdate, stime, snote){
	alert('Adding New Sticky: '+snote);
}
function createXMLHttpRequest(){
  try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
  try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
  try { return new XMLHttpRequest(); } catch (e) {}
  alert("XMLHttpRequest not supported");
  return null
}

function $(id) { return document.getElementById(id); }

function submitWord(item){
	//Show progress indicator
	$("progress").className="waiting";
	$("sticky_box").innerHTML += $(item).innerHTML;
	$("progress").className="notWaiting";
}	

function changeframe(source){
	$("iframe").src=source;
}
