var documentBody = "";
function showLarge( img )
{
	documentBody = document.body.innerHTML;
	document.body.innerHTML = "";
	var container = document.createElement( 'TABLE' );
	container.setAttribute( 'style', 'width: 100%; height: 100%; background-color: #FFFFFF; border: 0px;' );
	container.setAttribute( 'id', 'largeImage' );

	var tr = document.createElement( 'TR' );
	
	var td = document.createElement( 'TD' );
	td.setAttribute( 'style', 'width: 100%; height: 100%; background-color: #FFFFFF; text-align: center; vertical-align: center;' );
	
	var image = document.createElement( 'IMG' );
	image.setAttribute( 'src', img );
	image.setAttribute( 'style', 'cursor: pointer' );
	image.setAttribute( 'onClick', 'trashLarge()' );
	
	td.appendChild( image );
	tr.appendChild( td );
	container.appendChild( tr );

//	inserted = document.body.insertBefore( container, document.getElementById( 'abs' ) );
	document.body.appendChild( container );
}
function trashLarge()
{
	document.body.innerHTML = documentBody;
}
