﻿function showPic (whichpic) 
{
    if (document.getElementById) 
    {
        document.getElementById('mainimage').src = whichpic;
        return false;
    } 
    else 
    {
        return true;
    }
}