function ImgShow( imgSrc, imgWidth, imgHeight ) 
{
	with ( parent.parent.document.getElementById("img").style ) 
	{
		if ( navigator.appName == "Microsoft Internet Explorer" )
		{
			left = parent.parent.document.body.clientWidth/2 - imgWidth/2 - 12;
			top = parent.parent.document.body.clientHeight/2 - imgHeight/2 - 50;
		}
		else
		{
			height = imgHeight + 28;
			left = parent.parent.window.innerWidth/2 - imgWidth/2 - 12;
			top = parent.parent.window.innerHeight/2 - imgHeight/2 - 50;
		}
	
		visibility = "visible";
	}
	
	with ( parent.parent.document.images[0] )
	{
		src = imgSrc;
		style.visibility = "visible";
	}
	
	//while ( document.images[0].complete == false ) 
	//{
	//	window.setTimeout( "", 1000 )
	//}

	//parent.parent.document.images[0].style.visibility = "visible";
}
