function lightbox_createFrame(width, height, name, img_path)
{
	document.write('<div style="width:'+width+'px; height:'+(height+15)+'px; position:fixed; left:50%; margin-left:'+(-width/2)+'px; top:20px; background-color:white;\
			text-align:center; border-width:1px; border-style:solid; line-height:'+height+'px; visibility:hidden;" id="'+name+'">');
	document.write('<div style="line-height:15px;"><a href="#" onMouseDown="lightbox_hideFrame(\''+name+'\');">Close</a><br /></div>');
	document.write('<img src="'+img_path+'" style="vertical-align:middle;" />');
	document.write('</div>');
}

function lightbox_showFrame(name)
{
	document.getElementById(name).style.visibility='visible';
}

function lightbox_hideFrame(name)
{
	document.getElementById(name).style.visibility='hidden';
}
