function ZoomOut(obj)
{
	//alert("Zoom OUT: " +obj);
	
	obj.width='55';
	obj.height='64';
}

function ZoomIn(obj)
{
	//alert("Zoom IN: "+obj);
	obj.width='150';
	obj.height='160';
}
