	function ShowFullSize(obj,rootPath) {
		var fullSizePath = obj.src.replace(new RegExp("_t\\."), ".");

		if(!rootPath) rootPath = "";

		var fullSizeImg = new Image();
		fullSizeImg.src = fullSizePath;

		var height = fullSizeImg.height;
		var width = fullSizeImg.width;

		win = window.open("","win","width=" + width + ",height=" + height + ",top=0,status=1,resizable=1");
		win.focus();
		win.resizeTo(width,height);
		win.document.open("text/html");
		win.document.writeln("<html><head><title>CharlieDigital</title></head><body bgcolor='#FFFFFF' style='margin:0' onload='javascript:window.resizeTo(document.images[0].width + 40, document.images[0].height + 85)'><div style='text-align:center'><div style='margin: 0px auto;'><img src='" + rootPath + fullSizePath + "' onclick='javascript:window.close(); return true;' alt='Click to close' style=\"cursor:pointer;border:1px solid #000; margin-top:10px; \"/></div></div></body></html>");
        win.document.close();
	}