// imageviewer.js
//
// Copyright 2008 Elephant's Task LLC
//
// pop() function :
// 	Accepts the address of the larger image as a parameter.
//	Assigns the src value of the image tag to this value and
//  assigns the display property to show the display containing 
//  the image tag.
function pop( image ) { 
   	var imgtag = document.getElementById("fullviewimage");
    imgtag.src = image;
    var divimage = document.getElementById("showimage");
    divimage.style.display = "inline";
} 
// closeDiv() function :
// 	Assigns the display property of the image division to none
//  and assigns the src attribute to empty string..
function closeDiv() {
    var divimage = document.getElementById("showimage");
    divimage.style.display = "none";
}