function showPicture (width, height, picture){
	var w = width;
	var h = height;
	var x = Math.round ((window.screen.width - w)/2);
	var y = Math.round ((window.screen.height - h)/2);
	if (window.opera) y = Math.abs (y - window.screenTop);
	var p = window.open ('', '_blank', 'width=' + w + ',height=' + h + ',top=' + y + ',left=' + x);
	d = p.document;
	d.write("<html><head><title>SOLO Typing Tutor</title></head><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><a href='javascript:window.close()'><img src='" + picture + "'</a></body></html>");
	d.close();
	if (window.focus) { p.focus (); }
	return false;
}

