function ampliaImg(fotAoAlto, urlimg){
	if (fotAoAlto=="true"){
		bigImg.width=220;
		bigImg.height=320;
	}
	else {
		if (fotAoAlto=="false"){
			bigImg.width=320;
			bigImg.height=220;
		}
		else
		{
			if (fotAoAlto=="panorama"){
				bigImg.width=350;
				bigImg.height=170;
			}
			else
			{
				bigImg.width=170;
				bigImg.height=350;
			}
		}
	}
	bigImg.src=urlimg;
}
