ie = false;

function screenshot(imgName, path, format) {

	format = (format)? format : '.jpg'

	if (path) {
		path = path;
	} else {
		path = document.location.toString();
		for (var i = (path.length - 1); i > 0; i--) {
			if (path.charAt(i) == '/') {
				path = path.substring(0, i + 1);
				break;
			}
		}
	}

	imgName = path + imgName;

	sOnclick = "window.open('http://www.gamitopia.com/inc/popups/screenshots.php?" + imgName + format + "','i','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=502 ,height=483')"

	document.write('<a href="javascript:void(null)" onclick="' + sOnclick + '"><img src=' + imgName + 's' + format + ' alt="Click Here to Expand Image!"></a> ')

}
