/*POPPER - Pops up images on click*/
function popper(the_image,image_caption){
	document.getElementById('popper_image').innerHTML='<a href="#div_of" style="margin-left:10px;" onclick="javascript:closer();"><img class="border" src="'+the_image+'" alt="close image" title="close image" /></a><p style="margin-left:10px;">'+image_caption+'</p>';
}
function closer(){
	document.getElementById('popper_image').innerHTML="&nbsp;";
}

// rollover and roll off functions..... pass the name of the image tax and the path exluding the .gif extention
function doRollover(name, image){ document.images[name].src = image; }
function doRollout(name, image){ document.images[name].src = image; }

function turn_off(cell,image) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + image + "')";
}
}

function turn_on(cell,image) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + image + "')";
}
}

function PopupPic(locURL) { 
     window.open( "../gallery/prodpop.php?"+locURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200"); 
   } 

