// JavaScript Document

//
// Show enlarged image
//
function enlarge(obj,left,top){
	obj.style.cursor = "pointer";
	img = obj.attributes["fullsize"].value;
	
	div = document.getElementById("image-box");
	if(!div){ div = document.getElementById("image-box-horizontal"); }
	if(!div){ alert("Cannot find large image to load!"); return; }
	
	div.innerHTML  = "<img src=\""+img+"\" border=\"0\" alt=\"Please be patient, enlarging photo now...\" width=\"450\" height=\"250\" />";
	div.style.left = left ? left : "80px";
	if(top){
		div.style.top = top;
	}
	
}


//
// Close enlarged image
//
function byebye(obj){
	div = document.getElementById("image-box");
	if(!div){ div = document.getElementById("image-box-horizontal"); }
	if(!div){ alert("Cannot find large image to load!"); return; }

	div.innerHTML  = "<table width=100% height=100%><tr><td align=center valign=middle>Loading...</td></tr></table>";
	div.style.left = "-9999px";
}
