function hidepic(){
	hide_gray_bg();
	box=document.getElementById("picbox");
	document.body.removeChild(box);
}

function createpicbox(){
	var divblock=document.createElement("div");
	divblock.setAttribute("id", "picbox");
	document.body.appendChild(divblock);
}

function center_picture()
{
	var obj = document.getElementById('picbox');
	center_element(dropmenuobj,dropmenuobj.offsetHeight/2,dropmenuobj.offsetWidth/2);
	obj.style.visibility='visible';
	hidebox(1);
}

function showpic(menucontents, obj)
{
	show_gray_bg();

	if (!document.getElementById("picbox")) createpicbox();

	dropmenuobj=document.getElementById("picbox");
	dropmenuobj.innerHTML='<table cellspacing=0 cellpadding=0><tr><td align=center><a href="" onclick="hidepic(); return false"><img id="theimage" style="border:1px solid #CCCCCC; padding:1px; margin:5px" src='+menucontents+' onload="center_picture()"></a></td></tr></table>';
}

//var TheImage= new Image();
function go(imgsrc,ID)
{
	showbox('Loading...<br><img src="/img/loadinganim.gif">',null,220);
	showpic(imgsrc, document.getElementById('b'+ID));
}