function write_div(text,id)
{
	if (document.getElementById)
	{
		r = document.getElementById(id);
		r.innerHTML = '';
		r.innerHTML = text;
	}
	else if (document.all)
	{
		r = document.all[id];
		r.innerHTML = text;
	}
	else if (document.layers)
	{
		r = document.layers[id];
		text2 = '<P CLASS="enlarge_thumb_container">' + text + '</P>';
		r.document.open();
		r.document.write(text2);
		r.document.close();
	}
}

function large_image(n, loc){
   write_div("<div class='large_image'><div class='close'>Click image to close</div><div class='image'><a href=javascript:void(0) onmousedown='hide(\""+loc+"\")'><img src="+n+" border=0></a></div></div>", loc);
}

function hide(id){
	if (document.getElementById)
	{
		r = document.getElementById(id);
		r.innerHTML = '';
	}
	else if (document.all)
	{
		r = document.all[id];
		r.innerHTML = '';
	}
	else if (document.layers)
	{
		r = document.layers[id];
		text2 = '';
		r.document.open();
		r.document.write(text2);
		r.document.close();
	}
}
