
function showImage(file, w, h)
{
	var max_size, fixed_w, fixed_h, ratio, ext_w, ext_h;

	// photo_A width = height = 330
	max_size = 330;
	if ( w<=max_size && h<=max_size )
	{
		fixed_w = w;
		fixed_h = h;
	}
	else
	{
		ratio = h/w;
		fixed_h = Math.round(max_size*ratio);
		if (fixed_h > max_size)
		{
			fixed_w = Math.round( max_size / ratio );
			fixed_h = max_size;
		}
		else
		{
			fixed_w = max_size;
		}
	}
	document.getElementById("PhotoHolder").src = file;
	document.getElementById("PhotoHolder").width = fixed_w;
	document.getElementById("PhotoHolder").height = fixed_h;
	ext_w = w + 20;
	ext_h = h + 20;
	id = Math.round(Math.random() * 10000);
	document.getElementById("PhotoHolderUrl").href = "javascript:popup_noscroll(\"/action/profile/img.php?file=" + file + "\",\"" + id + "\"," + ext_w + "," + ext_h + ")";
}

