function Caramba(bigpicfilename, descripto) {
	var windowContent = "<html><head><title>MA Exhibition</title><link rel=\"stylesheet\" href=\"ma.css\"><meta http-equiv=\"imagetoolbar\" content=\"no\"></head>";
	windowContent += "<body><div class=\"carambydiv\"><form class=\"formleft\"><input type=\"button\" value=\"Close\" onclick=\"window.close()\"></form><form class=\"formright\"><input type=\"button\" value=\"Close\" onclick=\"window.close()\"></form><span>" + descripto + "</span></div><div class=\"bigpicdiv\"><img src=\"art/" + bigpicfilename + "\" border=\"0\"></div></body></html>";
	var picWindow = window.open("", "Wowsers", "menubar=no,scrollbars=yes,resizable=yes");
	if (picWindow.opener == null) picWindow.opener = self;
	picWindow.document.write(windowContent);
	picWindow.document.close();
}
