

// Set visibility for NN and IE
if (document.layer)
{
 visible = 'show';
 hidden = 'hide';
 }
else if (document.all)
{
 visible = 'visible';
 hidden = 'hidden';
 }
 
if(document.images)
{
// These are the mouse off choice images

var tri_con_off = new Image();
tri_con_off.src = "images/tri_icon.gif";


// These are the mouse on choice images.

var tri_con_on = new Image();
tri_con_on.src = "images/tri_anim.gif";
}

// This is the functions call 

function triAnim1(){
  if (document.images){
  document.images.tri1.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }
 
function triAnim2(){
  if (document.images){
  document.images.tri2.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 } 
 
 function triAnim3(){
  if (document.images){
  document.images.tri3.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }
 
 function triAnim4(){
  if (document.images){
  document.images.tri4.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }
 
 
 function triAnim7(){
  if (document.images){
  document.images.tri7.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }
 
 function triAnim8(){
  if (document.images){
  document.images.tri8.src = tri_con_on.src;
  window.status = 'Please send us any comments you may have to improve this site.'; }
 }
 
 function triAnim9(){
  if (document.images){
  document.images.tri9.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }
 
 function triAnim10(){
  if (document.images){
  document.images.tri10.src = tri_con_on.src;
  window.status = 'UMUC - Asia Placement Tests'; }
 }

 //These are the mouse off images
function choiceoff() {
  if (document.images){
  document.images.tri1.src = tri_con_off.src;
  document.images.tri2.src = tri_con_off.src;
  document.images.tri3.src = tri_con_off.src;
  document.images.tri4.src = tri_con_off.src;

  document.images.tri7.src = tri_con_off.src;
  document.images.tri8.src = tri_con_off.src;   }
 }
