function ShowImage(img)
{
	foto1= new Image();
	foto1.src=(img);
	CheckSize(img);
}

function CheckSize(img)
{
	if((foto1.width!=0)&&(foto1.height!=0))
	{	ViewImage(img);
	}
	else
	{	recheck="CheckSize('"+img+"')";
		recheckInterval=setTimeout(CheckSize,20);
	}
}

function ViewImage(img)
{
	fWidth  = foto1.width+0;
	fHeight = foto1.height+0;

	ksk = window.open('','ShowImage','width='+fWidth+',height='+fHeight+',toolbar=no,scrollbars=no,resizable=no');
	ksk.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>");
	ksk.document.write("<html><head><title>www.morganownersgroup.be</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'></head>");
	ksk.document.write("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='" + img + "'></body></html>")
	ksk.document.close();
}