function notesoff()
{
  if (document.getElementsByTagName)
  {
    var divs = document.getElementsByTagName('DIV');
    for (var i = 0; i < divs.length; i++)
    {
      var t = divs[i];
      if (t.className == "asknote")
      {
	t.className='askshow noprint';
	do t = t.nextSibling; while (t && t.nodeName != 'DIV');
	t.className = 'noshow noprint';	
      }
    }
  }
}

function shownotes(t)
{
	t.className = "noshow noprint";
        do t = t.nextSibling; while (t && t.nodeName != 'DIV');
        t.className = '';	
}
		
function get_DOM_ref(obj){
	if(document.getElementById && document.getElementById(obj)) return document.getElementById(obj); // W3C DOM
	if (document.all && document.all(obj)) return document.all(obj); // MSIE DOM
	return false;
}

function hide_instructions(){
	get_DOM_ref('askinst').className = 'noprint';
	get_DOM_ref('inst_instructions').className = 'noshow';
	get_DOM_ref('oembutton').className = 'noshow';
}

function show_instructions(){
	get_DOM_ref('askinst').className = 'noshow noprint';
	get_DOM_ref('inst_instructions').className = '';
}

function oemselect(){
	get_DOM_ref('oemform').submit();
}
	
hide_instructions();
notesoff();