// JavaScript Document
//
// COMPANY: QUEENSLAND ART GALLERY
// AUTHOR: RYAN TAYLOR
// PROJECT: asiapacifictriennial.com
// DATE: 03/07/2006 (dd/mm/yyyy)
//
//

// SHOWPIC (WHICHPIC)
function showPic (whichpic) {
  if (document.getElementById) {
    document.getElementById('placeholder').src = whichpic.href; 
    if (whichpic.title) {    
      document.getElementById('largeImage').childNodes[0].nodeValue = whichpic.title;         
    } else {  
      document.getElementById('largeImage').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
    }
    return false;
  } else {   
    return true;
  }
}
