function supersizeWin(path, imageid) {
	screenWidth = screen.availWidth;
	screenHeight = screen.availHeight;
	
	browser=navigator.userAgent;
	if ((browser.indexOf("MSIE")!=-1)) {
		width = screenWidth - 12;
		height = screenHeight - 40;
	} else {
		width = screenWidth;
		height = screenHeight;
	}
	url = path + "/" + imageid + "_" + screenWidth + "x" + screenHeight + ".html";

	window.open(url,"Supersize","width=" + width + ",height=" + height + ",left=0,top=0,location=no,menubar=no,scrollbars=Yes,status=no,toolbar=no,resizable=yes");
	return false;
}