function showPic (whichpic) {
var section = document.URL.toString().substring(document.URL.toString().lastIndexOf('/')+1,document.URL.toString().length-5);
//alert(section);
if (section == ".com/"){section = "index";}
if (document.getElementById) {
document.getElementById('placeholder').src = "/images/"+section+whichpic.href.charAt(whichpic.href.length - 6)+".jpg";
  return false;
 } else {
  return true;
 }
}