function loadImage()
{
	var objRef = opener.top;
	var image = objRef.imagePath + objRef.imageDirectory + objRef.fileName + '.jpg';
	var html = '<html><head>';
	html += '<title>Irish Script On Screen - Meamram P&aacute;ip&eacute;ar R&iacute;omhaire</title>';
	html += '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';

	html += '</head>';
	html += '<body>';
		
	if ((objRef.imageDirectory == '/small_jpgs/') && (objRef.library != 'MMA')) {
		html += '<a href="' + objRef.imagePath + '/large_jpgs/' + objRef.fileName + '.jpg" target="_self"><img border="0" src="' + image +'"></a>';
	}
	else {
		html += '<img src="' + image + '">';
	}


	html += '</body></html>';

	canvas.document.write(html);
	canvas.document.close();
}

