﻿function showGalleryImage( imgpath, title )
{
	var theimg = new Image();
	theimg.src = imgpath;
	var width_plus = 0;
	var height_plus = 0;
	var Browser;
	if (navigator.appName == "Microsoft Internet Explorer") Browser = "IE";
	if ( Browser == "IE" )
	{
		width_plus = 10;
		height_plus = 55;
	}
	if (!title) { title = ""; }
	w = window.open("","galleryimage","width=680,height=680,toolbar=no,resizeable=yes,scrollbars=auto");
	w.document.writeln("<html>"
		+"<head>"
		+"<title>"+title+"</title>\n"
		+"</head>\n"
		+"<body style=\"margin:0;padding:0;\" margin=\"0\" padding=\"0\">"
		+"<a href=\"#\" onclick=\"self.close();\"><img src=\""+imgpath+"\" border=\"0\" onload=\"window.resizeTo((this.width+"+width_plus+"),(this.height+"+height_plus+"));self.focus();\" /></a>"
		+"</body>"
		+"</html>");
	w.document.close();
	w.focus();
	// theimg.onload = resizeWin(w,theimg.width,theimg.height);
	
	return false;
}


function imagePreview( imgpath, title )
{
	if (!title) { title = ""; }
	return showGalleryImage(imgpath,title);
}