function showFull(photo){
	var newWidth = Math.round(parseInt(photo.width) * 3.25) + 10;
	var newHeight = Math.round(parseInt(photo.height) * 3.25) + 70;
	var img = photo.id;
	
	var description = new Array(
		"dermatitis1b", "Dermatitis before treatment with DermaZinc&trade;.",
		"dermatitis1a", "Dermatitis after treatment with DermaZinc&trade;.",
		"psoriasis1b", "Psoriasis before treatment with DermaZinc&trade;",
		"psoriasis1a", "Psoriasis after treatment with DermaZinc&trade;",
		"eczema1b", "Eczema before treatment with DermaZinc&trade;",
		"eczema1a", "Eczema after treatment with DermaZinc&trade;",
		"psoriasis2b", "Psoriasis before treatment with DermaZinc&trade;",
		"psoriasis2a", "Psoriasis after treatment with DermaZinc&trade;",		
		"sdermatitis1b", "Seborrheic dermatitis before treatment with DermaZinc&trade;",
		"sdermatitis1a", "Seborrheic dermatitis after treatment with DermaZinc&trade;",		
		"psoriasis3b", "Psoriasis before treatment with DermaZinc&trade;",
		"psoriasis3a", "Psoriasis after treatment with DermaZinc&trade;");
		
	var parameters = "resizable='no', toobars='no', width=" + newWidth +", height=" + newHeight +", top='0', left='0'";
	var result = open('', 'result', parameters);
	
	result.document.writeln('<html>');
	result.document.writeln('<head>');
	result.document.writeln('<link rel="stylesheet" type="text/css" href="common/style.css">');
	result.document.writeln('<title>' + img + '.jpg</title>');
	result.document.writeln('</head>');
	result.document.writeln('<body style="margin: 5px 5px 0 5px;" onblur="self.close()">');
	result.document.writeln('<p align="center"><img src="./img/bnaphotos/' + img +'.jpg"></p>');
	
	for (i=0; i<description.length; i++)
		if (img == description[i])
			result.document.writeln('<p class="photodesc">' + description[i+1] + '</p>');
	
	result.document.writeln('</body></html>');
	result.document.close();
	result.focus();
}